<attList>

<attList> (attribute list) 当該要素に関する全ての属性に関する文書を、一連の要素attDef で示す。 [22.5 Element Specifications 22.6 Class Specifications]
モジュール tagdocs — Documentation Elements
属性
org⚓︎ (organization) リスト中の属性が全て使用できるか(org="group")、またはその1つだけ が使用できるか(org="choice")を示す。
状態 任意
データ型 teidata.enumerated
正当な値:
group
全て。 [初期値]
choice
ひとつを選択。
上位
下位
<attList>
 <attDef ident="typeusage="opt">
  <desc>type of schema</desc>
  <datatype>
   <dataRef key="teidata.enumerated"/>
  </datatype>
 </attDef>
</attList>
<attList org="choice">
 <attDef ident="active">
  <desc versionDate="2005-07-24"
   xml:lang="en">
identifies the <soCalled>active</soCalled> participants in a non-mutual relationship, or all the participants in a mutual
     one.</desc>
  <datatype maxOccurs="unbounded">
   <dataRef key="teidata.pointer"/>
  </datatype>
 </attDef>
 <attDef ident="mutualusage="opt">
  <desc versionDate="2005-07-24"
   xml:lang="en">
supplies a list of participants amongst all of whom the relationship holds equally.</desc>
  <datatype maxOccurs="unbounded">
   <dataRef key="teidata.pointer"/>
  </datatype>
 </attDef>
</attList>
Content model
<content>
 <alternate minOccurs="1"
  maxOccurs="unbounded">

  <elementRef key="attRef"/>
  <elementRef key="attDef"/>
  <elementRef key="attList"/>
 </alternate>
</content>
宣言
<rng:element name="attList">
 <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:optional>
  <rng:attribute name="org"
   a:defaultValue="group">

   <rng:choice>
    <rng:value>group</rng:value>
    <rng:value>choice</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:oneOrMore>
  <rng:choice>
   <rng:ref name="attRef"/>
   <rng:ref name="attDef"/>
   <rng:ref name="attList"/>
  </rng:choice>
 </rng:oneOrMore>
</rng:element>
element attList
{
   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,
   attribute org { "group" | "choice" }?,
   ( attRef | attDef | attList )+
}