<xsd:complexType name="MoneyWithParticipantShare">
<xsd:annotation>
<xsd:documentation xml:lang="en">An extension of the money type with the ability to specify a lender share amount in addition to the global amount (represented by 'amount').</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="Money">
<xsd:sequence>
<xsd:element name="shareAmount" type="xsd:decimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The lender share amount.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
|