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="TransportSource"> <xs:annotation> <xs:appinfo> not transported (1) ems (2) police (3) -- law enforcement other (4) unknown (5) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="5"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="not transported"/> <xs:enumeration value="ems"/> <xs:enumeration value="police"/> <xs:enumeration value="other"/> <xs:enumeration value="unknown"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |