<listRelation>

<listRelation> describe las relaciones o los lazos sociales entre los participantes de una interacción verbal. [13.3.2.3 Personal Relationships]
Módulo namesdates — Names, Dates, People, and Places
Atributos
Miembro de
Contenido en
Puede contener
core: desc head p
linking: ab
Nota

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

Ejemplo
<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 pp2 are the parents of pp3 and pp4; they are also married to each other; pp1 is the employer of pp3, pp5, pp6, and pp7.

Ejemplo
<listPerson>
 <person xml:id="en_pp1">
<!-- data about person en_pp1 -->
 </person>
 <person xml:id="en_pp2">
<!-- data about person en_pp2 -->
 </person>
<!-- more person (en_pp3, en_pp4) elements here -->
</listPerson>
<listPlace>
 <place xml:id="en_pl1">
<!-- data about place en_pl1 -->
 </place>
<!-- more place (en_pl2, en_pl3) elements here -->
</listPlace>
<listRelation>
 <relation name="residence"
  active="#en_pp1 #en_pp2passive="#en_pl1"/>

</listRelation>

The persons with identifiers en_pp1 and en_pp2 live in en_pl1.

Ejemplo
<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"/>

  <elementRef key="descminOccurs="0"
   maxOccurs="unbounded"/>

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

    <elementRef key="relation"
     minOccurs="1maxOccurs="1"/>

    <elementRef key="listRelation"
     minOccurs="1maxOccurs="1"/>

   </alternate>
  </alternate>
 </sequence>
</content>
Declaración
<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:zeroOrMore>
   <rng:ref name="desc"/>
  </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*, desc*, ( model.pLike | ( relation | listRelation )+ ) )
}