Current Schema in EiPayloads WD30
<!-- 7.0 Tenders, Quotes, and Transactions -->
<!-- 7.1 Tenders -->
<xs:element name="eiTender" type="eitc:EiTenderType"/>
<xs:complexType name="EiTenderType">
<xs:annotation>
<xs:documentation>Tender Indicates a specific offer to buy or sell. A Tender can be for any number of EmixBase derived types, and the Tender is treated as all-or-none.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="eitc:tenderID" minOccurs="1" maxOccurs="1"/>
<xs:element ref="emix:emixBase" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<!-- 7.2 Quotes -->
<xs:element name="eiQuote" type="eitc:EiQuoteType"/>
<xs:complexType name="EiQuoteType">
<xs:annotation>
<xs:documentation>A specific offer to sell for a particular price. A Quote can be for any number of EmixBase derived types, and the Quote is treated as all-or-none.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="eitc:quoteID" minOccurs="1" maxOccurs="1"/>
<xs:element ref="emix:emixBase" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<!-- 7.3 Transations -->
<xs:element name="eiTransaction" type="eitc:EiTransactionType"/>
<xs:complexType name="EiTransactionType">
<xs:annotation>
<xs:documentation>A Transaction is a specific agreement to accept a specific Tender or Tenders.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="eitc:transactionID" minOccurs="1" maxOccurs="1"/>
<xs:element ref="eitc:tenderID" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="emix:emixBase" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>