| 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="PedestrianSignalState"> <xs:annotation> <xs:appinfo> unknown (0) stop (1) -- (B00000001) do not walk caution (2) -- (B00000010) flashing dont walk sign walk (3) -- (B00000100) walk active othersHere (4) -- (B00001000) what else? </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="stop"/> <xs:enumeration value="caution"/> <xs:enumeration value="walk"/> <xs:enumeration value="othersHere"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |