<vColl>

<vColl> (collection of values) represents the value part of a feature-value specification which contains multiple values organized as a set, bag, or list.
Module iso-fs — 18 Feature Structures
In addition to global attributes In addition to global attributes
org (organization) indicates organization of given value or values as set, bag or list.
Status Recommended when applicable
Legal values are:
set
indicates that the given values are organized as a set.
bag
indicates that the given values are organized as a bag (multiset).
list
indicates that the given values are organized as a list.
Used by
May contain
Declaration

<rng:element name="vColl">
 <rng:ref name="att.global.attributes"/>
 <rng:optional>
  <rng:attribute name="org">
   <rng:choice>
    <rng:value>set</rng:value>
    <rng:value>bag</rng:value>
    <rng:value>list</rng:value>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:group>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="fs"/>
    <rng:ref name="model.featureVal.single"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:group>
</rng:element>
element vColl
{
   att.global.attributes,
   attribute org { "set" | "bag" | "list" }?,
   ( ( fs | model.featureVal.single )* )
}
Example
<f name="name">
 <vColl>
  <string>Jean</string>
  <string>Luc</string>
  <string>Godard</string>
 </vColl>
</f>
Example
<fs>
 <f name="lex">
  <symbol value="auxquels"/>
 </f>
 <f name="maf">
  <vColl org="list">
   <fs>
    <f name="cat">
     <symbol value="prep"/>
    </f>
   </fs>
   <fs>
    <f name="cat">
     <symbol value="pronoun"/>
    </f>
    <f name="kind">
     <symbol value="rel"/>
    </f>
    <f name="num">
     <symbol value="pl"/>
    </f>
    <f name="gender">
     <symbol value="masc"/>
    </f>
   </fs>
  </vColl>
 </f>
</fs>