<xsd:complexType name="Address">
<xsd:sequence>
<xsd:element name="street" minOccurs="1" maxOccurs="unbounded" type="AddressStreet" />
<xsd:element name="city" type="udt:TextType" />
<xsd:element name="cityRegion" minOccurs="0" maxOccurs="1" type="udt:TextType" />
<xsd:element name="regionCode" type="udt:TextType" />
<xsd:element name="postalCode" type="udt:TextType" />
<xsd:element name="country" type="udt:TextType" />
<xsd:element name="latitude" minOccurs="0" maxOccurs="1" type="xsd:double" />
<xsd:element name="longitude" minOccurs="0" maxOccurs="1" type="xsd:double" />
<xsd:element name="community" minOccurs="0" maxOccurs="1" type="udt:TextType" />
<xsd:element name="province" minOccurs="0" maxOccurs="1" type="udt:TextType" />
<xsd:element name="regionName" minOccurs="0" maxOccurs="1" type="udt:TextType" />
</xsd:sequence>
<xsd:attribute name="type" default="physical" type="TypeOfAddress" />
</xsd:complexType>
|