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
|
<order orderNumber="12345678" orderDate="2008-10-18" shipDate="2008-10-22" xmlns="http://jibx.org/starter1">
<customer customerNumber="5678">
<firstName>John</firstName>
<lastName>Smith</lastName>
</customer>
<billTo>
<street1>12345 Happy Lane</street1>
<city>Plunk</city>
<state>WA</state>
<postCode>98059</postCode>
<country>USA</country>
</billTo>
<shipping>PRIORITY_MAIL</shipping>
<shipTo>
<street1>333 River Avenue</street1>
<city>Kirkland</city>
<state>WA</state>
<postCode>98034</postCode>
<country>USA</country>
</shipTo>
<item quantity="1" price="5.99">
<id>FA9498349851</id>
</item>
<item quantity="2" price="9.50">
<id>GC1234905049</id>
</item>
<item quantity="1" price="8.95">
<id>AX9300048820</id>
</item>
</order>
|