<?xml version="1.0"?>
<!-- po1e125a.xml, invalid xsi:type: type known but not derived from declared type -->
<!--* po1.xml, from http://www.w3.org/TR/xmlschema-0/#UnqualLocals *-->
<!--* Retrieved 2002-12-20 *-->
<!--* Expanded to be a complete document by MSM *-->

<apo:purchaseOrder xmlns:apo="http://www.example.com/PO1"
                   xmlns:po_schema="http://www.example.com/PO1"
                   xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xs:type="po_schema:PurchaseOrderType"
                   orderDate="1999-10-20">
    <!--* Type PurchaseOrderType on purchaseOrder element:  same as declared *-->
    <shipTo country="US"
                   xs:type="po_schema:USAddress">
        <!--* Type USAddress on shipTo element:  same as declared *-->
        <name>Alice Smith</name>
        <street>123 Maple Street</street>
        <!-- etc. -->
        <city>Mill Valley</city>
        <state>CA</state>
        <zip xs:type="xsd:string">90952</zip>
        <!--* Type xsd:string on zip:  known, but not derived from declared *-->
        <!-- ... end expansion. -->
    </shipTo>
    <billTo country="US" xs:type="po_schema:PurchaseOrderType">
    <!--* Type PurchaseOrderType on billTo:  known, but not derived from declared *-->
        <name>Robert Smith</name>
        <street>8 Oak Avenue</street>
        <!-- etc. -->
        <city>Old Town</city>
        <state>PA</state>
        <zip>95819</zip>
        <!-- ... end expansion. -->
    </billTo>
    <apo:comment>Hurry, my lawn is going wild!</apo:comment>
    <!-- etc. -->
    <items xsi:type="apo:Items">
        <item partNum="872-AA">
            <productName>Lawnmower</productName>
            <quantity>1</quantity>
            <USPrice>148.95</USPrice>
            <apo:comment>Confirm this is electric</apo:comment>
        </item>
        <item partNum="926-AA">
            <productName>Baby Monitor</productName>
            <quantity>1</quantity>
            <USPrice>39.98</USPrice>
            <shipDate xsi:type="xsd:date">1999-05-21</shipDate>
        </item>
    </items>
    <!-- ... end expansion. -->
</apo:purchaseOrder>
