blob: 8ec60ed682a6e056b4fde4593569eb953b6f3d24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" standalone="yes"?>
<domain name="book">
<struct name="book" cardinality="{1}" isRoot="true">
<field>
<childRef ref="book.chapter"/>
<childRef ref="book.paragraph"/>
</field>
</struct>
<struct name="chapter">
<field>
<childRef ref="book.section"/>
<childRef ref="book.paragraph"/>
</field>
</struct>
<struct name="section">
<field>
<childRef ref="book.subsection"/>
<childRef ref="book.paragraph"/>
</field>
</struct>
<struct name="subsection">
<field>
<childRef ref="book.paragraph"/>
</field>
</struct>
<struct name="paragraph" transparent="true">
<field>
<childRef ref="book.text"/>
</field>
</struct>
<struct name="text" transparent="true">
<primitive type="string"/>
</struct>
</domain>
|