2.2.3.3.2 PhoneType Simple Type

The PhoneType type is used by the Type attribute, as specified in section 2.2.3.4.6.1, on the Phone element, as specified in section 2.2.3.1.25, to indicate the type of phone number associated with the known entity.

 <xs:simpleType name="PhoneType">
     <xs:restriction base="xs:string">
         <xs:enumeration value="Unspecified" />
         <xs:enumeration value="Home" />
         <xs:enumeration value="Mobile" />
         <xs:enumeration value="Work" />
         <xs:enumeration value="Fax" />
     </xs:restriction>
 </xs:simpleType>

The possible values for attributes of this type are specified in the following table.

Value

Meaning

Unspecified

The type of phone number is unavailable.

Home

The phone number is for a home phone.

Mobile

The phone number is for a mobile phone.

Work

The phone number is for a work phone.

Fax

The phone number is for a fax machine.