<xsd:complexType name="StockSaleConfirmationType">
<xsd:sequence>
<xsd:element name="Id" type="EntityIdType" />
<xsd:element name="ParticipantId" type="EntityIdType" />
<xsd:element name="SaleDate" type="LocalDateTimeType" />
<xsd:element name="StockSalePosition" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="StockPurchaseId" type="EntityIdType" />
<xsd:element name="SharesSold" type="xsd:decimal" />
<xsd:element name="TaxInfo" type="TaxInfoType" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="SharesSoldTotal" type="xsd:decimal" />
<xsd:element name="SalesPricePerShare" type="AmountType" minOccurs="0" />
<xsd:element name="TotalSalesValue" type="AmountType" minOccurs="0" />
<xsd:element name="TaxInfoTotal" type="TaxInfoType" minOccurs="0" maxOccurs="unbounded" />
<xsd:element ref="UserArea" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
|