<fs>

<fs> (Estructura de rasgo) representa una feature structure (estructura de rasgos), es decir, un conjunto de pares de valores de rasgos organizados como una unidad estructural. 18.2 Elementary Feature Structures and the Binary Feature Value
Móduloiso-fs — 18 Feature Structures
Atributos
typeespecifica el tipo de estructura de rasgo.
Estado Necesario cuando se aplica
Tipo de datos

<rng:ref name="data.enumerated"/>
data.enumerated
Valores Character string, e.g. word structure.
feats (características) indica las especificaciones de valor de rasgo que constituyen esta estructura de rasgo.
Estado Opcional
Tipo de datos 1–∞ apariciones de

<rng:ref name="data.pointer"/>
data.pointer
separado por espacio en blanco
Valores one or more identifiers of f elements.
Usado por
Puede contener
iso-fs: f
Declaración

<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:oneOrMore>
    <rng:ref name="data.pointer"/>
   </rng:oneOrMore>
  </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+ } }?,
   f*
}
Ejemplo
<fs type="agreement_structure">
 <f name="person">
  <symbol value="third"/>
 </f>
 <f name="number">
  <symbol value="singular"/>
 </f>
</fs>