<valItem>

<valItem> documents a single attribute-value within a list of possible or mandatory items. 22.4.5 Attribute List Specification
Module tagdocs — 22 Documentation Elements
In addition to global attributes In addition to global attributes
ident specifies the attribute value concerned.
Status Required
Datatype

<rng:text/>
text
Values any string value
mode specifies the effect of this declaration on any previously supplied declaration for the same item.
Status Optional
Legal values are:
add
this declaration is added to the current definitions [Default]
delete
this declaration and all of its children are removed from the current setup
change
this declaration changes the declaration of the same name in the current definition
replace
this declaration replaces the declaration of the same name in the current definition
Used by
May contain
core: desc gloss
tagdocs: altIdent equiv
Declaration

<rng:element name="valItem">
 <rng:ref name="att.global.attributes"/>
 <rng:attribute name="ident">
  <rng:text/>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="mode" a:defaultValue="add">
   <rng:choice>
    <rng:value>add</rng:value>
    <rng:value>delete</rng:value>
    <rng:value>change</rng:value>
    <rng:value>replace</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:ref name="model.glossLike"/>
 </rng:zeroOrMore>
</rng:element>
element valItem
{
   att.global.attributes,
   attribute ident { text },
   attribute mode { "add" | "delete" | "change" | "replace" }?,
   model.glossLike*
}
Example
<valItem ident="dub">
 <altIdent xml:lang="fr">dou</altIdent>
 <equiv name="unknown"/>
 <gloss>dubious</gloss>
 <desc>used when the application of this element is doubtful or uncertain</desc>
</valItem>