<xs:element name="Invoice">
<xs:complexType>
<xs:sequence>
<xs:element ref="InvoiceHeader" />
<xs:element ref="InvoiceLineItem" maxOccurs="unbounded" />
<xs:element ref="MonetaryAdjustment" minOccurs="0" maxOccurs="unbounded" />
<xs:element ref="InvoiceSummary" />
</xs:sequence>
<xs:attribute name="InvoiceType" type="invoiceType" use="required" />
<xs:attribute name="InvoiceContextType" type="invoiceContextType" />
<xs:attribute name="Reissued" type="yesNo" default="No" />
<xs:attribute name="Language" type="languageType" default="eng" />
</xs:complexType>
</xs:element>
|