<root>

<root> (nodo radice) rappresenta il nodo radice di un albero [19.2 Trees]
Modulo nets — Graphs, Networks, and Trees
Attributi
value⚓︎ assegna alla radice un valore, che può essere una struttura di tratti o altro elemento di analisi
Stato Opzionale
Tipo di dati teidata.pointer
children⚓︎ fornisce una lista di identificatori degli elementi figli del nodo radice
Stato Richiesto
Tipo di dati 1–∞ occorrenze di teidata.pointer separato da spazio bianco
ord⚓︎ (ordinato) indica se la radice è ordinata
Stato Opzionale
Tipo di dati teidata.xTruthValue
outDegree⚓︎ indica il grado in uscita della radice, cioè il numero dei suoi figli
Stato Opzionale
Tipo di dati teidata.count
Contenuto in
nets: tree
Può contenere
core: label
Esempio
<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>
Dichiarazione
<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?
}