<xsd:complexType name="Address">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type that represents a physical postal address.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="streetAddress" type="StreetAddress" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The set of street and building number information that identifies a postal address within a city.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="city" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The city component of a postal address.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="state" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">A country subdivision used in postal addresses in some countries. For example, US states, Canadian provinces, Swiss cantons.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="country" type="Country" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The ISO 3166 standard code for the country within which the postal address is located.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="postalCode" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The code, required for computerised mail sorting systems, that is allocated to a physical address by a national postal authority.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|