In This Topic
    xdb-examples-hierarchy- Sample 1.xml
    In This Topic
    <?xml version="1.0" encoding="UTF-8"?>
    <Invoice xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="..\Schema\SimpleHierarchy.xsd">
        <InvoiceNo>564</InvoiceNo>
        <DeliveryAddress>
            <Forename>Joe</Forename>
            <Surname>Bloggs</Surname>
            <AddresLine1>23 Summers lane</AddresLine1>
            <AddresLine2>Wintersville</AddresLine2>
            <AddresLine5>Stoke</AddresLine5>
            <PostCode>SK4 8LS</PostCode>
        </DeliveryAddress>
        <BillingAddress>
            <Forename>Jane</Forename>
            <Surname>Doe</Surname>
            <AddresLine1>Acme Account</AddresLine1>
            <AddresLine2>Acme House</AddresLine2>
            <AddresLine3>523 Hogarth Lane</AddresLine3>
            <AddresLine5>Collegeville</AddresLine5>
            <PostCode>CL5 4UT</PostCode>
        </BillingAddress>
        <Item>
            <StockCode>6896</StockCode>
            <Description>A4 Paper (white)</Description>
            <UnitCost>495</UnitCost>
            <Quantity>15</Quantity>
        </Item>
        <Item>
            <StockCode>5161</StockCode>
            <Description>Paper Clips (Large)</Description>
            <UnitCost>54</UnitCost>
            <Quantity>10</Quantity>
        </Item>
        <Payment>
            <VISA CardNo="4565589655425468" Expiry="2005-06"/>
        </Payment>
    </Invoice>