<revisionDesc>

<revisionDesc> (revision description) summarizes the revision history for a file. [2.6 The Revision Description 2.1.1 The TEI Header and Its Components]
Module header — The TEI Header
Attributes
Contained by
header: teiHeader
linking: annotation
May contain
core: list
Note

If present on this element, the status attribute should indicate the current status of the document. The same attribute may appear on any change to record the status at the time of that change. Conventionally change elements should be given in reverse date order, with the most recent change at the start of the list.

Example
<revisionDesc status="embargoed">
 <change when="1991-11-11who="#LB"> deleted chapter 10 </change>
</revisionDesc>
Content model
<content>
 <alternate>
  <elementRef key="listminOccurs="1"
   maxOccurs="unbounded"/>

  <elementRef key="listChange"
   minOccurs="1maxOccurs="unbounded"/>

  <elementRef key="changeminOccurs="1"
   maxOccurs="unbounded"/>

 </alternate>
</content>
Schema Declaration
<rng:element name="revisionDesc">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:ref name="att.docStatus.attributes"/>
 <rng:choice>
  <rng:oneOrMore>
   <rng:ref name="list"/>
  </rng:oneOrMore>
  <rng:oneOrMore>
   <rng:ref name="listChange"/>
  </rng:oneOrMore>
  <rng:oneOrMore>
   <rng:ref name="change"/>
  </rng:oneOrMore>
 </rng:choice>
</rng:element>
element revisionDesc
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   att.docStatus.attributes,
   ( list+ | listChange+ | change+ )
}