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="AirBagDeployed"> <xs:annotation> <xs:appinfo> deployment unknown (0) not deployed (1) deployed Front (2) deployed Side (3) deployed Other (4) -- (knee , deployed Combination (5) not Applicable (6) -- (non-motorist) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="6"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="deployment unknown"/> <xs:enumeration value="not deployed"/> <xs:enumeration value="deployed Front"/> <xs:enumeration value="deployed Side"/> <xs:enumeration value="deployed Other"/> <xs:enumeration value="deployed Combination"/> <xs:enumeration value="not Applicable"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |