<xsd:complexType name="TelephoneNumber">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type that represents a telephonic contact.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="type" type="TelephoneTypeEnum" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">The type of telephone number (work, personal, mobile).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="number" type="String" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">A telephonic contact.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|