<root>

<root> (root node) represents the root node of a tree. 19.2 Trees
Modul nets — 19 Graphs, Networks, and Trees
Neben global gültigen Attributen
value provides the value of the root, which is a feature structure or other analytic element.
Zustand Empfohlen wenn zutreffend
Datentyp

<rng:ref name="data.pointer"/>
data.pointer
Werte A valid identifier of a feature structure or other analytic element.
children provides a list of identifiers of the elements which are the children of the root node.
Zustand Obligatorisch
Datentyp 1–∞ Vorkommen von 

<rng:ref name="data.pointer"/>
data.pointer
Durch Leerzeichen getrennt
Werte A list of valid identifiers.
ord (ordered) indicates whether or not the root is ordered.
Zustand Empfohlen wenn zutreffend
Datentyp

<rng:ref name="data.xTruthValue"/>
data.xTruthValue
outDegree gives the out degree of the root, the number of its children.
Zustand Optional
Datentyp

<rng:ref name="data.count"/>
data.count
Werte A nonnegative integer.
Verwendet von
Kann enthalten
core: label
Deklaration

<rng:element name="root">
 <rng:ref name="att.global.attributes"/>
 <rng:optional>
  <rng:attribute name="value">
   <rng:ref name="data.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:attribute name="children">
  <rng:list>
   <rng:ref name="data.pointer"/>
   <rng:zeroOrMore>
    <rng:ref name="data.pointer"/>
   </rng:zeroOrMore>
  </rng:list>
 </rng:attribute>
 <rng:optional>
  <rng:attribute name="ord">
   <rng:ref name="data.xTruthValue"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="outDegree">
   <rng:ref name="data.count"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:ref name="label"/>
 </rng:optional>
</rng:element>
element root
{
   att.global.attributes,
   attribute value { data.pointer }?,
   attribute children { list { data.pointer, data.pointer* } },
   attribute ord { data.xTruthValue }?,
   attribute outDegree { data.count }?,
   label?
}
Beispiel
<root xml:id="vp1" children="#vb1 #pn1" outDegree="2">
 <label>VP</label>
</root>
<leaf xml:id="vb1"/>
<leaf xml:id="pn1"/>