<xsd:complexType name="Party">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type defining party information.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="partyId" type="PartyId" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">A party identifier, e.g. a S.W.I.F.T. bank identifier code (BIC).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="partyName" type="xsd:normalizedString" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The name of the party. A free format string. FpML does not define usage rules for this element.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="account" type="Account" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation xml:lang="en">Accounts serviced by this party. These are not accounts where this party is beneficiary, but instead where services are provided by this party to the beneficiary party.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en">The id uniquely identifying the Party within the document.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
|