<valList>

<valList> (value list) contains one or more valItem elements defining possible values for an attribute. [22.4.5 Attribute List Specification]
Moduletagdocs — 22 Documentation Elements
Attributesatt.global (@xml:id, @n, @xml:lang, @rend, @rendition, @xml:base, @xml:space) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) att.combinable (@mode)
typespecifies the extensibility of the list of attribute values specified.
Status Optional
Datatype

<rng:ref name="data.enumerated"/>
data.enumerated
Legal values are:
closed
only the values specified are permitted.
semi
(semi-open) all the values specified should be supported, but other values are legal and software should have appropriate fallback processing for them.
open
the values specified are sample values only. [Default]
Used by
Contained by
May contain
tagdocs: valItem
Declaration

<rng:element name="valList">
 <rng:ref name="att.global.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.combinable.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.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.combinable.attributes,
   attribute type { "closed" | "semi" | "open" }?,
   valItem*
}
Example
<valList type="closed">
 <valItem ident="req">
  <gloss>required</gloss>
 </valItem>
<!-- <valItem ident="mwa"> <gloss>mandatory when applicable</gloss> </valItem> -->
<!-- [LR] commenting rwa and mwa until we're sure my changes are OK -->
 <valItem ident="rec">
  <gloss>recommended</gloss>
 </valItem>
<!-- <valItem ident="rwa"> <gloss>recommended when applicable</gloss> </valItem> -->
 <valItem ident="opt">
  <gloss>optional</gloss>
 </valItem>
</valList>