<xs:complexType name="PostalRouteType">
<xs:sequence>
<xs:element ref="AddressLine" minOccurs="0" maxOccurs="unbounded" />
<xs:choice>
<xs:element name="PostalRouteName" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation> Name of the Postal Route</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:attribute name="Type" />
<xs:attributeGroup ref="grPostal" />
<xs:anyAttribute namespace="##other" />
</xs:complexType>
</xs:element>
<xs:element name="PostalRouteNumber">
<xs:annotation>
<xs:documentation> Number of the Postal Route</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:attributeGroup ref="grPostal" />
<xs:anyAttribute namespace="##other" />
</xs:complexType>
</xs:element>
</xs:choice>
<xs:element ref="PostBox" minOccurs="0" />
<xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="Type" />
<xs:anyAttribute namespace="##other" />
</xs:complexType>
|