| namespace | http://www.DSRC-Draft-03-00-24 | ||
| type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
| used by |
|
||
| annotation |
|
||
| source | <xs:simpleType name="SpecialSignalState"> <xs:annotation> <xs:appinfo> unknown (0) notInUse (1) -- (B00000001) default state , arriving (2) -- (B00000010) track-lane about to be occupied present (3) -- (B00000100) track-lane is occupied with vehicle departing (4) -- (B00001000) track-lane about to be empty </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="4"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="unknown"/> <xs:enumeration value="notInUse"/> <xs:enumeration value="arriving"/> <xs:enumeration value="present"/> <xs:enumeration value="departing"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |