<msIdentifier>

<msIdentifier> (manuscript identifier) contains the information required to identify the manuscript being described. [10.4 The Manuscript Identifier]
Modulemsdescription — Manuscript Description
Attributesatt.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
Member of
Contained by
core: bibl
msdescription: msDesc msFrag msPart
May contain
Example
<msIdentifier>
 <settlement>San Marino</settlement>
 <repository>Huntington Library</repository>
 <idno>MS.El.26.C.9</idno>
</msIdentifier>
Schematron

<s:report test="not(parent::tei:msPart) and (local-name(*[1])='idno' or local-name(*[1])='altIdentifier' or normalize-space(.)='')">An msIdentifier must contain either a repository or location of some type, or a manuscript name</s:report>
Content model
<content>
 <sequence>
  <sequence>
   <classRef key="model.placeNamePart"
    expand="sequenceOptional"/>

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

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

   <elementRef key="collection"
    minOccurs="0maxOccurs="unbounded"/>

   <elementRef key="idnominOccurs="0"/>
  </sequence>
  <alternate minOccurs="0"
   maxOccurs="unbounded">

   <elementRef key="msName"/>
   <elementRef key="altIdentifier"/>
  </alternate>
 </sequence>
</content>
Schema Declaration
<rng:element name="msIdentifier">
 <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:group>
  <rng:group>
   <rng:optional>
    <rng:ref name="placeName"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="bloc"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="country"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="region"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="settlement"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="district"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="geogName"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="institution"/>
   </rng:optional>
   <rng:optional>
    <rng:ref name="repository"/>
   </rng:optional>
   <rng:zeroOrMore>
    <rng:ref name="collection"/>
   </rng:zeroOrMore>
   <rng:optional>
    <rng:ref name="idno"/>
   </rng:optional>
  </rng:group>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="msName"/>
    <rng:ref name="altIdentifier"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:group>
</rng:element>
element msIdentifier
{
   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,
   (
      (
         placeName?,
         bloc?,
         country?,
         region?,
         settlement?,
         district?,
         geogName?,
         institution?,
         repository?,
         collection*,
         idno?
      ),
      ( msName | altIdentifier )*
   )
}