<listPlace>

<listPlace> (list of places) contains a list of places, optionally followed by a list of relationships (other than containment) defined amongst them. [2.2.7 The Source Description 13.3.4 Places]
Modulenamesdates — Names, Dates, People, and Places
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)) att.typed (@type, @subtype) att.declarable (@default) att.sortable (@sortKey)
Member of
Contained by
May contain
Example
<listPlace type="offshoreIslands">
 <place>
  <placeName>La roche qui pleure</placeName>
 </place>
 <place>
  <placeName>Ile aux cerfs</placeName>
 </place>
</listPlace>
Content model
<content>
 <sequence>
  <classRef key="model.headLike"
   minOccurs="0maxOccurs="unbounded"/>

  <alternate minOccurs="1"
   maxOccurs="unbounded">

   <classRef key="model.placeLike"/>
   <elementRef key="listPlace"/>
  </alternate>
  <alternate minOccurs="0"
   maxOccurs="unbounded">

   <elementRef key="relation"/>
   <elementRef key="listRelation"/>
  </alternate>
 </sequence>
</content>
Schema Declaration
<rng:element name="listPlace">
 <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.typed.attributes"/>
 <rng:ref name="att.declarable.attributes"/>
 <rng:ref name="att.sortable.attributes"/>
 <rng:group>
  <rng:zeroOrMore>
   <rng:ref name="model.headLike"/>
  </rng:zeroOrMore>
  <rng:oneOrMore>
   <rng:choice>
    <rng:ref name="model.placeLike"/>
    <rng:ref name="listPlace"/>
   </rng:choice>
  </rng:oneOrMore>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="relation"/>
    <rng:ref name="listRelation"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:group>
</rng:element>
element listPlace
{
   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.typed.attributes,
   att.declarable.attributes,
   att.sortable.attributes,
   (
      model.headLike*,
      ( model.placeLike | listPlace )+,
      ( relation | listRelation )*
   )
}