/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<schema>
 <document name="data">
    <attribute name="xmlns:xsi" ignore="yes"/>
    <attribute name="xsi:noNamespaceSchemaLocation" ignore="yes"/>
    <collection name="shiporder" id="1">
	<attribute name="orderid"/>
	<text name="orderperson"/>
	<collection name="shipto" id="2" type="container">
	    <text name="name"/>
	    <text name="address"/>
	    <text name="city"/>
	    <text name="country"/>
	</collection>
	<collection name="item" id="3" type="container">
	    <text name="title"/>
	    <text name="note"/>
	    <text name="quantity"/>
	    <text name="price"/>
	</collection>
    </collection>
 </document>
</schema>