Skip to content

Instantly share code, notes, and snippets.

@wowo
Created January 24, 2011 14:43
Show Gist options
  • Save wowo/793308 to your computer and use it in GitHub Desktop.
Save wowo/793308 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<AfasGetConnector>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="AfasGetConnector">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="GetMatchedPayments">
<xs:complexType>
<xs:sequence>
<xs:element name="Subnummer" type="xs:string" minOccurs="0"/>
<xs:element name="Factuurnummer" type="xs:string" minOccurs="0"/>
<xs:element name="Invoice_date" type="xs:date" minOccurs="0"/>
<xs:element name="Due_date" type="xs:date" minOccurs="0"/>
<xs:element name="Curr." type="xs:string" minOccurs="0"/>
<xs:element name="Amount_invoice" type="xs:decimal" minOccurs="0"/>
<xs:element name="Amount_open" type="xs:decimal" minOccurs="0"/>
<xs:element name="Datum_laatste_betaling" type="xs:date" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<GetMatchedPayments>
<Subnummer>0123456789</Subnummer>
<Factuurnummer>2011.012348</Factuurnummer>
<Invoice_date>2011-01-18</Invoice_date>
<Due_date>2011-02-01</Due_date>
<Curr.>USD</Curr.>
<Amount_invoice>0</Amount_invoice>
<Amount_open>-11.9</Amount_open>
<Datum_laatste_betaling>2011-01-24</Datum_laatste_betaling>
</GetMatchedPayments>
</AfasGetConnector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment