<personGrp>

<personGrp> (groupe de personnes) décrit un groupe d'individus traité comme une personne unique à des fins d'analyse. [15.2.2 The Participant Description]
Module namesdates — Names, Dates, People, and Places
Attributs
role⚓︎ précise le rôle joué par ce groupe de personnes dans l'interaction.
Statut Optionel
Type de données teidata.enumerated
sex⚓︎ précise le sexe du groupe participant.
Statut Optionel
Type de données 1–∞ occurrences de teidata.sex séparé par un espace
gender⚓︎ specifies the gender of the participant group.
Statut Optionel
Type de données 1–∞ occurrences de teidata.gender séparé par un espace
age⚓︎ précise la tranche d'âge des participants.
Statut Optionel
Type de données teidata.enumerated
size⚓︎ précise la taille exacte ou approximative du groupe.
Statut Optionel
Type de données 1–∞ occurrences de teidata.word séparé par un espace
Membre du
Contenu dans
corpus: particDesc
namesdates: event listPerson org
Peut contenir
Note

Peut contenir une description en texte libre organisée en paragraphes, ou une suite quelconque d'éléments relatifs à la démographie.

Il faut utiliser l'attribut global xml:id pour identifier chaque locuteur dans une transcription de paroles si l'attribut who est présent pour chaque prise de parole.

Exemple
<personGrp xml:id="fr_pg1role="audience"
 sex="mixedage="teensize="approx 50"/>
Modèle de contenu
<content>
 <alternate>
  <classRef key="model.pLikeminOccurs="1"
   maxOccurs="unbounded"/>

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

   <classRef key="model.personPart"/>
   <classRef key="model.global"/>
  </alternate>
 </alternate>
</content>
Schéma Declaration
<rng:element name="personGrp">
 <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.sortable.attributes"/>
 <rng:optional>
  <rng:attribute name="role">
   <rng:ref name="teidata.enumerated"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="sex">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.sex"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="gender">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.gender"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="age">
   <rng:ref name="teidata.enumerated"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="size">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.word"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:choice>
  <rng:oneOrMore>
   <rng:ref name="model.pLike"/>
  </rng:oneOrMore>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="model.personPart"/>
    <rng:ref name="model.global"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:choice>
</rng:element>
element personGrp
{
   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.sortable.attributes,
   attribute role { teidata.enumerated }?,
   attribute sex { list { teidata.sex+ } }?,
   attribute gender { list { teidata.gender+ } }?,
   attribute age { teidata.enumerated }?,
   attribute size { list { teidata.word+ } }?,
   ( model.pLike+ | ( model.personPart | model.global )* )
}