blob: 2d00fc564cb019f0e268519e05180235e1ca346d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<document>
<ontology name="test">
<struct name="a" root="true">
<field name="afield" subtree="true">
<childRef ref="a"/>
</field>
<field optional="true">
<childRef ref="b"/>
</field>
</struct>
<struct cardinality="{1, 7-8}" name="b" transparent="true"/>
</ontology>
<test:a>
<afield/>
</test:a>
</document>
|