namespace | http://www.IM-Draft-03-00-44a | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string, local:ICSCommandType) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="ICSCommandType"> <xs:annotation> <xs:appinfo> none (0) -- this is not a good choice in most cases ics (1) -- Incident command system ucs (2) -- Unified command system heics (3) -- Hospital Emergency Incident Command System </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="3"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="none"/> <xs:enumeration value="ics"/> <xs:enumeration value="ucs"/> <xs:enumeration value="heics"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="local:ICSCommandType"/> </xs:simpleType> </xs:union> </xs:simpleType> |