namespace | http://www.ATIS-Draft-03-00-79 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="PhoneRole"> <xs:annotation> <xs:appinfo> unknown (0) home (1) work (2) main (3) mobile (4) cell (5) auto (6) fax (7) pager (8) private (9) spouse (10) emergency (11) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="11"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="unknown"/> <xs:enumeration value="home"/> <xs:enumeration value="work"/> <xs:enumeration value="main"/> <xs:enumeration value="mobile"/> <xs:enumeration value="cell"/> <xs:enumeration value="auto"/> <xs:enumeration value="fax"/> <xs:enumeration value="pager"/> <xs:enumeration value="private"/> <xs:enumeration value="spouse"/> <xs:enumeration value="emergency"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |