<root>

<root> (nodo raíz) representa el nodo raíz de un árbol. [19.2 Trees]
Módulonets — Graphs, Networks, and Trees
Atributosatt.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
valueproporciona el valor de la raíz, que puede ser una estructura de rasgos u otro elemento de análisis.
Estado Opcional
Tipo de datos teidata.pointer
childrenproporciona una lista de identificadores de elementos que son hijos (descendientes) de la raíz.
Estado Necesario
Tipo de datos 1–∞ apariciones de teidata.pointer separado por espacio en blanco
ord(ordenado) indica si la raíz es o no ordenada.
Estado Opcional
Tipo de datos teidata.xTruthValue
outDegreeindica el grado en salida de la raíz, es decir, el número de hijos de esta.
Estado Opcional
Tipo de datos teidata.count
Contenido en
nets: tree
Puede contener
core: label
Ejemplo
<root xml:id="vp1children="#vb1 #pn1"
 outDegree="2">

 <label>VP</label>
</root>
<leaf xml:id="vb1"/>
<leaf xml:id="pn1"/>
Content model
<content>
 <elementRef key="labelminOccurs="0"/>
</content>
Declaración
<rng:element name="root">
 <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="value">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:attribute name="children">
  <rng:list>
   <rng:oneOrMore>
    <rng:ref name="teidata.pointer"/>
   </rng:oneOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="ord">
   <rng:ref name="teidata.xTruthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="outDegree">
   <rng:ref name="teidata.count"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element root
{
   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 value { teidata.pointer }?,
   attribute children { list { teidata.pointer+ } },
   attribute ord { teidata.xTruthValue }?,
   attribute outDegree { teidata.count }?,
   label?
}