<valList>

<valList> (value list) 可能な属性値を表すひとつ以上の要素valItemを示す。 [22.5.3 Attribute List Specification]
モジュール tagdocs — Documentation Elements
属性
type⚓︎ 属性値リストの拡張性を示す。
状態 任意
データ型 teidata.enumerated
正当な値:
closed
許可された値のみ。
semi
(semi-open) 付与される全値が支持されるべきであるが、その他の値も可能であ る。ソフトウェアは、そのための適切な代替処理を用意すべきであ る。
open
付与された値は、参考値である。 [初期値]
上位
下位
tagdocs: valItem
<valList type="closed">
 <valItem ident="req">
  <gloss>required</gloss>
 </valItem>
 <valItem ident="rec">
  <gloss>recommended</gloss>
 </valItem>
 <valItem ident="opt">
  <gloss>optional</gloss>
 </valItem>
</valList>
Content model
<content>
 <elementRef key="valItemminOccurs="0"
  maxOccurs="unbounded"/>

</content>
宣言
<rng:element name="valList">
 <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.combinable.attributes"/>
 <rng:ref name="att.deprecated.attributes"/>
 <rng:optional>
  <rng:attribute name="type"
   a:defaultValue="open">

   <rng:choice>
    <rng:value>closed</rng:value>
    <rng:value>semi</rng:value>
    <rng:value>open</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:ref name="valItem"/>
 </rng:zeroOrMore>
</rng:element>
element valList
{
   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.combinable.attributes,
   att.deprecated.attributes,
   attribute type { "closed" | "semi" | "open" }?,
   valItem*
}