namespace | http://www.DSRC-Draft-02-00-15 | ||||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||||
used by |
|
||||
annotation |
|
||||
source | <xs:simpleType name="LightbarInUse"> <xs:annotation> <xs:appinfo> notEquipped (0) notInUse (1) inUse (2) reserved (3) -- for future use </xs:appinfo> <xs:documentation> schoolBusLights posible direction arrow board uses here too? </xs:documentation> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="3"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="notEquipped"/> <xs:enumeration value="notInUse"/> <xs:enumeration value="inUse"/> <xs:enumeration value="reserved"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |