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="SpecialAbilities"> <xs:annotation> <xs:appinfo> hovFullVehicle (0) hov2person (1) hov3person (3) ahsVehicle (4) electricVehicle (5) -- also hybrids emergencyVehicle (6) fourWheelDrive (7) motorcycle (8) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="8"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="hovFullVehicle"/> <xs:enumeration value="hov2person"/> <xs:enumeration value="hov3person"/> <xs:enumeration value="ahsVehicle"/> <xs:enumeration value="electricVehicle"/> <xs:enumeration value="emergencyVehicle"/> <xs:enumeration value="fourWheelDrive"/> <xs:enumeration value="motorcycle"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |