| 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="PedestrianDetect"> <xs:annotation> <xs:appinfo> none (0) -- (B00000001) maybe (1) -- (B00000010) one (2) -- (B00000100) some (3) -- (B00001000) etc (4) -- (B00010000) -- Please suggest -- suitable terms here </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="none"/> <xs:enumeration value="maybe"/> <xs:enumeration value="one"/> <xs:enumeration value="some"/> <xs:enumeration value="etc"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |