namespace | http://www.DSRC-Draft-02-00-15 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string, WiperStatus) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="WiperStatus"> <xs:annotation> <xs:appinfo> notEquipped (0) off (1) intermittent (2) low (3) high (4) automaticPresent (256) -- Auto wipper equipped </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="256"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="notEquipped"/> <xs:enumeration value="off"/> <xs:enumeration value="intermittent"/> <xs:enumeration value="low"/> <xs:enumeration value="high"/> <xs:enumeration value="automaticPresent"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="local:WiperStatus"/> </xs:simpleType> </xs:union> </xs:simpleType> |