<xsd:complexType name="BeneficiaryDataType">
<xsd:sequence>
<xsd:choice>
<xsd:element name="PersonName" type="PersonNameType" />
<xsd:element name="OrganizationName" type="xsd:string" />
</xsd:choice>
<xsd:element name="ContactInformation" type="ContactMethodType" minOccurs="0" maxOccurs="unbounded" />
<xsd:element name="DateOfBirth" type="DateNkNaType" minOccurs="0" />
<xsd:element name="Relationship" type="FamilyRelationshipType" minOccurs="0" />
<xsd:element name="IdentificationCode" type="EntityIdType" minOccurs="0" />
<xsd:element name="InheritanceAmount" minOccurs="0">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:double">
<xsd:attribute name="inheritanceType" use="required">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Percentage" />
<xsd:enumeration value="MonetaryAmount" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="BeneficiarySequence" type="xsd:integer" minOccurs="0" />
<xsd:element name="StartDate" type="LocalDateNkNaType" />
<xsd:element name="EndDate" type="LocalDateNaType" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
|