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="InjuryCode"> <xs:annotation> <xs:appinfo> -- Sorting shall be by one of the following two methods: -- Method one: TriageCode triageCode X (10) -- Number of involved people on site -- that are not injured (excludes responders) triageCode 0 (11) -- That level of code is assigned if a person is -- injured but for whom a triage code has not been assigned triageCode 1 (12) -- treatable life-threatening illness or injury -- also called "code red" in some systems triageCode 2 (13) -- serious but not life-threatening -- also called "code yellow" in some systems triageCode 3 (14) -- minor injuries , -- also called "code green" in some systems triageCode 4 (15) -- fatalities -- also called "code black" in some systems -- Method two: MMUCC_P4 These categories match the categories of MMUCC P4. mmucc K (20) -- category K (Fatal Injury) mmucc A (21) -- category A (Nonfatal injury - Incapacitating) mmucc B (22) -- category B (Nonfatal injury - Non-incapacitating) mmucc C (23) -- category C (Nonfatal injury - Possible) mmucc O (24) -- category O (No Injury) mmucc N (25) -- category N (Not reported) mmucc U (26) -- category U (Unknown) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="10"/> <xs:maxInclusive value="26"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="triageCode X"/> <xs:enumeration value="triageCode 0"/> <xs:enumeration value="triageCode 1"/> <xs:enumeration value="triageCode 2"/> <xs:enumeration value="triageCode 3"/> <xs:enumeration value="triageCode 4"/> <xs:enumeration value="mmucc K"/> <xs:enumeration value="mmucc A"/> <xs:enumeration value="mmucc B"/> <xs:enumeration value="mmucc C"/> <xs:enumeration value="mmucc O"/> <xs:enumeration value="mmucc N"/> <xs:enumeration value="mmucc U"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |