<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.
Moduleiso-fs
Attributes
org (organization) indicates organization of given value or values as set, bag or list.
Status Required 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
iso-fs: fs
Declaration
element vColl
{
   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>