-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathorder2.xml
More file actions
44 lines (44 loc) · 1.2 KB
/
order2.xml
File metadata and controls
44 lines (44 loc) · 1.2 KB
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
36
37
38
39
40
41
42
43
44
<?xml version='1.0' encoding='utf-8'?>
<orders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" batch_id="2" xsi:noNamespaceSchemaLocation="../orders.xsd">
<version>2</version>
<shiporder orderid="2" processed_at="2023-09-10T09:39:45.000+02:00">
<orderperson name="billing">
<name>Alice</name>
<address>string</address>
<city>string</city>
<zip codingSystem="int" state="NY">21093</zip>
<country>string</country>
<companyId>
<lei>198210983210983HE1209</lei>
</companyId>
</orderperson>
<item>
<product>
<name>product 2</name>
<version>regular</version>
</product>
<quantity>43</quantity>
<price>30.3</price>
<currency>EUR</currency>
</item>
<item>
<product>
<name>product 3</name>
<version>regular</version>
</product>
<note>string</note>
<quantity>21</quantity>
<price>70.4</price>
<currency>EUR</currency>
</item>
<item>
<product>
<name>product 1</name>
<version>premium</version>
</product>
<quantity>2</quantity>
<price>12.2</price>
<currency>EUR</currency>
</item>
</shiporder>
</orders>