<xs:element name="Country">
<xs:annotation>
<xs:documentation>Specification of a country</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="AddressLine" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="CountryNameCode" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A country code according to the specified scheme</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:attribute name="Scheme">
<xs:annotation>
<xs:documentation>Country code scheme possible values, but not limited to: iso.3166-2, iso.3166-3 for two and three character country codes.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="grPostal" />
<xs:anyAttribute namespace="##other" />
</xs:complexType>
</xs:element>
<xs:element ref="CountryName" minOccurs="0" maxOccurs="unbounded" />
<xs:choice minOccurs="0">
<xs:element ref="AdministrativeArea" />
<xs:element ref="Locality" />
<xs:element ref="Thoroughfare" />
</xs:choice>
<xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:anyAttribute namespace="##other" />
</xs:complexType>
</xs:element>
|