<valList>

<valList> (값 목록) 하나의 속성에 대한 가능한 값을 정의하는 하나 이상의 valItem 요소를 포함한다. [22.5.3 Attribute List Specification]
모듈 tagdocs — Documentation Elements
속성
type⚓︎ 명시된 속성 값 목록의 확장성을 명시한다.
상태 수의적
자료 유형 teidata.enumerated
적법한 값은:
closed
명시된 하나의 값만이 허용된다.
semi
(반개방) 명시된 모든 값이 지원되어야하지만, 다른 값도 적법하며 소프트웨어는 이들에 대해 적절한 준비 프로세서를 갖추어야 한다.
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*
}