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="TractionControlState"> <xs:annotation> <xs:appinfo> notEquipped (0) -- B'00 Not Equipped off (1) -- B'01 Off on (2) -- B'10 On engaged (3) -- B'11 Engaged </xs:appinfo> <xs:documentation> Encoded as a 2 bit value </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="off"/> <xs:enumeration value="on"/> <xs:enumeration value="engaged"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |