<listRelation>

<listRelation> provides information about relationships identified amongst people, places, and organizations, either informally as prose or as formally expressed relation links. [13.3.2.3 Personal Relationships]
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.sortable (@sortKey)
Member of
Contained by
May contain
core: head p
linking: ab
Note

May contain a prose description organized as paragraphs, or a sequence of relation elements.

Example
<listPerson>
 <person xml:id="pp1">
<!-- data about person pp1 -->
 </person>
 <person xml:id="pp2">
<!-- data about person pp1 -->
 </person>
<!-- more person (pp3, pp4) elements here -->
 <listRelation type="personal">
  <relation name="parent"
   active="#pp1 #pp2passive="#pp3 #pp4"/>

  <relation name="spouse"
   mutual="#pp1 #pp2"/>

 </listRelation>
 <listRelation type="social">
  <relation name="employeractive="#pp1"
   passive="#pp3 #pp5 #pp6 #pp7"/>

 </listRelation>
</listPerson>

The persons with identifiers pp1 and p2 are the parents of pp3 and pp4; they are also married to each other; pp1 is the employer of pp3, pp5, pp6, and pp7.

Example
<listRelation>
 <p>All speakers are members of the Ceruli family, born in Naples.</p>
</listRelation>
Content model
<content>
 <sequence>
  <classRef key="model.headLike"
   minOccurs="0maxOccurs="unbounded"/>

  <alternate>
   <classRef key="model.pLike"/>
   <alternate minOccurs="1"
    maxOccurs="unbounded">

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