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="DamageExtent"> <xs:annotation> <xs:appinfo> none (1) -- None minor (2) -- Minor damage functional (3) -- Functional damage disabling (4) -- Disabling damage severe (5) -- Severe/vehicle totaled notReported (6) -- Not reported unknown (7) -- Unknown </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="none"/> <xs:enumeration value="minor"/> <xs:enumeration value="functional"/> <xs:enumeration value="disabling"/> <xs:enumeration value="severe"/> <xs:enumeration value="notReported"/> <xs:enumeration value="unknown"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |