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="CompassDirection"> <xs:annotation> <xs:appinfo> north (7998) south (7999) east (8000) west (8001) northeast (8002) northwest (8003) southeast (8004) southwest (8005) </xs:appinfo> <xs:documentation> Compass Points </xs:documentation> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="7998"/> <xs:maxInclusive value="8005"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="north"/> <xs:enumeration value="south"/> <xs:enumeration value="east"/> <xs:enumeration value="west"/> <xs:enumeration value="northeast"/> <xs:enumeration value="northwest"/> <xs:enumeration value="southeast"/> <xs:enumeration value="southwest"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |