<?xml version="1.0" encoding="UTF-8"?>
<po:purchaseOrder 
  orderDate="2008-10-20" 
  xmlns:po="http://www.example.org/po" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="http://www.example.org/po PurchaseOrder.xsd ">
  <shipTo>
    <name>Cookie Monster</name>
    <street>Sesame Street</street>
    <city>New York</city>
    <postalCode>NY12345</postalCode>
    <country>USA</country>
  </shipTo>
  <billTo>
    <name>Paula Kerger</name>
    <street>2100 Crystal Drive</street>
    <city>Arlington</city>
    <postalCode>VA22202</postalCode>
    <country>USA</country>
  </billTo>
  <items partNum="376-UF">
    <productName>Small Cookies</productName>
    <quantity>150</quantity>
    <price>0.25</price>
    <shipDate>2009-01-07</shipDate>
  </items>
  <items partNum="326-MJ">
    <productName>Large Cookies</productName>
    <quantity>50</quantity>
    <price>0.50</price>
    <shipDate>2008-11-12</shipDate>
  </items>
  <items partNum="326-MJ">
    <productName>Christmas Cookies</productName>
    <quantity>25</quantity>
    <price>1.5</price>
    <shipDate>2008-12-24</shipDate>
  </items>
</po:purchaseOrder>
