<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. [18.7 Collections as Complex Feature Values]
Module iso-fs — Feature Structures
Attributes
org⚓︎ (organization) indicates organization of given value or values as set, bag or list.
Status Optional
Datatype teidata.enumerated
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.
Member of
Contained by
May contain
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>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <elementRef key="fs"/>
  <classRef key="model.featureVal.single"/>
  <elementRef key="vColl"/>
 </alternate>
</content>
Schema Declaration
<rng:element name="vColl">
 <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: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:zeroOrMore>
  <rng:choice>
   <rng:ref name="fs"/>
   <rng:ref name="model.featureVal.single"/>
   <rng:ref name="vColl"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element vColl
{
   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,
   attribute org { "set" | "bag" | "list" }?,
   ( fs | model.featureVal.single | vColl )*
}