-
Notifications
You must be signed in to change notification settings - Fork 514
/
Copy pathData.xml
35 lines (35 loc) · 867 Bytes
/
Data.xml
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
35
<?xml version="1.0" encoding="utf-8"?>
<Customer>
<CustomerID>1</CustomerID>
<Name>Tai Yee</Name>
<HighValueCustomer>True</HighValueCustomer>
<Orders>
<Order Number="1">
<ProductDescription>Unicycle</ProductDescription>
<Quantity>3</Quantity>
<OrderDate>September 5, 2001</OrderDate>
</Order>
<Order Number="2">
<ProductDescription>Tricycle</ProductDescription>
<Quantity>8</Quantity>
<OrderDate>September 26, 2001</OrderDate>
</Order>
</Orders>
<Items>
<Item>
<Name>Items1</Name>
<MinCount>1</MinCount>
<MaxCount>10</MaxCount>
</Item>
<Item>
<Name>Items2</Name>
<MinCount>2</MinCount>
<MaxCount>15</MaxCount>
</Item>
<Item>
<Name>Items3</Name>
<MinCount>3</MinCount>
<MaxCount>30</MaxCount>
</Item>
</Items>
</Customer>