<xsd:complexType name="Phone">
<xsd:sequence>
<xsd:element name="number" type="udt:TextType" />
<xsd:element name="areaCode" minOccurs="0" maxOccurs="1" type="udt:TextType" />
<xsd:element name="cityCode" minOccurs="0" maxOccurs="1" type="udt:TextType" />
<xsd:element name="countryAccessNumber" minOccurs="0" maxOccurs="1" type="udt:TextType" />
<xsd:element name="phoneExtension" minOccurs="0" maxOccurs="1" type="udt:TextType" />
</xsd:sequence>
<xsd:attribute name="type" default="home" type="PhoneType" />
</xsd:complexType>
|