<xs:element name="JointPersonName">
<xs:annotation>
<xs:documentation>A container to define more than one person name. Example: Mrs Mary Johnson and Mr.Patrick Johnson</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:choice maxOccurs="unbounded">
<xs:element name="NameLine" type="NameLineType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Name or part of the name as a free format text. If the name structure has to be broken down into individual elements, use PersonName Container.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="PersonName" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Use this element to specify every member separately.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Use this to import/use/reference name elements from other namespaces </xs:documentation>
</xs:annotation>
</xs:any>
</xs:sequence>
<xs:attribute name="JointNameConnector">
<xs:annotation>
<xs:documentation>The connector used to join more than one person name. Example: Mr Hunt AND Mrs Clark, where AND is the JointNameConnector</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Code">
<xs:annotation>
<xs:documentation>Indicates the name element code defined by postal standard groups like ECCMA, ADIS, UN/PROLIST for postal services.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:anyAttribute namespace="##other" />
</xs:complexType>
</xs:element>
|