| 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="CollisionEventFlag"> <xs:annotation> <xs:appinfo> unknown (0) intersectionViolation (1) -- Need other values from committte here itemThree (2) itemFour (3) </xs:appinfo> </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="unknown"/> <xs:enumeration value="intersectionViolation"/> <xs:enumeration value="itemThree"/> <xs:enumeration value="itemFour"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |