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="PatientTransportation"> <xs:annotation> <xs:appinfo> notTransported (0) byAmbulance (1) byPoliceCar (2) byHelicopter (3) byPrivateVehicle (4) -- or conveyance unspecified (5) -- unspecified transportation unknown (9) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="9"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="notTransported"/> <xs:enumeration value="byAmbulance"/> <xs:enumeration value="byPoliceCar"/> <xs:enumeration value="byHelicopter"/> <xs:enumeration value="byPrivateVehicle"/> <xs:enumeration value="unspecified"/> <xs:enumeration value="unknown"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |