<supportDesc>

<supportDesc> (support description) groups elements describing the physical support for the written part of a manuscript or other object. [10.7.1 Object Description]
Module msdescription — Manuscript Description
Attributes
material⚓︎ (material) a short project-defined name for the material composing the majority of the support
Status Optional
Datatype teidata.enumerated
Suggested values include:
paper
parch
(parchment)
mixed
Contained by
msdescription: objectDesc
May contain
core: p
header: extent
linking: ab
Example
<supportDesc>
 <support> Parchment roll with <material>silk</material> ribbons.
 </support>
</supportDesc>
Content model
<content>
 <alternate>
  <classRef key="model.pLikeminOccurs="1"
   maxOccurs="unbounded"/>

  <sequence>
   <elementRef key="supportminOccurs="0"/>
   <elementRef key="extentminOccurs="0"/>
   <elementRef key="foliation"
    minOccurs="0maxOccurs="unbounded"/>

   <elementRef key="collation"
    minOccurs="0"/>

   <elementRef key="condition"
    minOccurs="0"/>

  </sequence>
 </alternate>
</content>
Schema Declaration
<rng:element name="supportDesc">
 <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:optional>
  <rng:attribute name="material">
   <rng:choice>
    <rng:value>paper</rng:value>
    <rng:value>parch</rng:value>
    <rng:value>mixed</rng:value>
    <rng:ref name="teidata.enumerated"/>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:choice>
  <rng:oneOrMore>
   <rng:ref name="model.pLike"/>
  </rng:oneOrMore>
  <rng:group>
   <rng:optional>
    <rng:ref name="support"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="extent"/>
   </rng:optional>
   <rng:zeroOrMore>
    <rng:ref name="foliation"/>
   </rng:zeroOrMore>
   <rng:optional>
    <rng:ref name="collation"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="condition"/>
   </rng:optional>
  </rng:group>
 </rng:choice>
</rng:element>
element supportDesc
{
   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,
   attribute material { "paper" | "parch" | "mixed" | teidata.enumerated }?,
   ( model.pLike+ | ( support?, extent?, foliation*, collation?, condition? ) )
}