namespace | http://www.IM-Draft-03-00-44a | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string, local:FireType) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="FireType"> <xs:annotation> <xs:appinfo> unknown (0) class a (1) -- paper , class b (2) -- flammable or combustible liquids such -- as gasoline , kerosene , paint , paint -- thinners and propane. class c (3) -- fires involving energized electrical -- wiring and equipment , switches , panel -- boxes and power tools. class d (4) -- specialized fires involving combustible -- metals such as magnesium , sodium , zirconium , -- etc.. These metals burn at high temperatures -- and give off sufficient oxygen to support -- combustion. They may react violently with -- water or other chemicals , and must be handled -- with care. brush fire (5) wild fire (6) -- (forest fire) , plastic (7) hazardous materials (8) combination (9) other (10) -- other fires type , -- for additional information </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="10"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="unknown"/> <xs:enumeration value="class a"/> <xs:enumeration value="class b"/> <xs:enumeration value="class c"/> <xs:enumeration value="class d"/> <xs:enumeration value="brush fire"/> <xs:enumeration value="wild fire"/> <xs:enumeration value="plastic"/> <xs:enumeration value="hazardous materials"/> <xs:enumeration value="combination"/> <xs:enumeration value="other"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="local:FireType"/> </xs:simpleType> </xs:union> </xs:simpleType> |