<xsd:complexType name="StockDepositType">
<xsd:sequence>
<xsd:element name="Id" type="EntityIdType" />
<xsd:element name="DepositAction">
<xsd:complexType>
<xsd:attribute name="type" use="required">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Deposit" />
<xsd:enumeration value="SellOnDeposit" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
<xsd:element name="Participant">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Id" type="EntityIdType" />
<xsd:element name="Name" type="PersonNameType" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="PlanId" type="EntityIdType" />
<xsd:element name="Date" type="LocalDateTimeType" />
<xsd:element name="Quantity" type="xsd:decimal" />
<xsd:element name="StockPrice" minOccurs="0">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="currency" use="required" type="CurrencyCodeType" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="RestrictionPeriod" minOccurs="0" maxOccurs="unbounded">
<xsd:complexType>
<xsd:attribute name="validFrom" use="required" type="AnyDateTimeNkNaType" />
<xsd:attribute name="validTo" use="required" type="AnyDateTimeNkNaType" />
<xsd:attribute name="type" use="required" type="RestrictionPeriodType" />
</xsd:complexType>
</xsd:element>
<xsd:element ref="UserArea" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
|