<fs>

<fs> (struttura dei tratti) rappresenta una feature structure, cioè una raccolta di coppie di valori tratti organizzata come una unità strutturale. 18.2 Elementary Feature Structures and the Binary Feature Value
Modulo iso-fs — 18 Feature Structures
Oltre agli attributi globali
type specifica il tipo di struttura dei tratti
Stato Consigliato se applicabile
Tipo di dati

<rng:ref name="data.enumerated"/>
data.enumerated
Valori Character string, e.g. word structure.
feats (tratti) indica le specifiche del valore dei tratti che formano questa struttura.
Stato Opzionale
Tipo di dati 1–∞ occorrenze di 

<rng:ref name="data.pointer"/>
data.pointer
separato da spazio bianco
Valori one or more identifiers of f elements.
Usato da
Può contenere
iso-fs: f
Dichiarazione

<rng:element name="fs">
 <rng:ref name="att.global.attributes"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:ref name="data.enumerated"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="feats">
   <rng:list>
    <rng:ref name="data.pointer"/>
    <rng:zeroOrMore>
     <rng:ref name="data.pointer"/>
    </rng:zeroOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:ref name="f"/>
 </rng:zeroOrMore>
</rng:element>
element fs
{
   att.global.attributes,
   attribute type { data.enumerated }?,
   attribute feats { list { data.pointer, data.pointer* } }?,
   f*
}
Esempio
<fs type="agreement_structure">
 <f name="person">
  <symbol value="third"/>
 </f>
 <f name="number">
  <symbol value="singular"/>
 </f>
</fs>