namespace | http://www.IM-Draft-03-00-44a | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="VehicleRoleInEvent"> <xs:annotation> <xs:appinfo> non contact (1) non collision (2) striking (3) struck (4) both striking and struck (5) not reported (6) unknown (7) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="7"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="non contact"/> <xs:enumeration value="non collision"/> <xs:enumeration value="striking"/> <xs:enumeration value="struck"/> <xs:enumeration value="both striking and struck"/> <xs:enumeration value="not reported"/> <xs:enumeration value="unknown"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |