namespace | http://www.IM-Draft-03-00-44a | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string, local:ICS-Level) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="ICS-Level"> <xs:annotation> <xs:appinfo> unknown (0) commandStaff (1) section (2) -- use for the level of sector as well -- branch (3) , -- division (4) , -- group (5) , -- unit (6) , -- team (7) , ## unit is prefered in most ICS over team </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="2"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="unknown"/> <xs:enumeration value="commandStaff"/> <xs:enumeration value="section"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="local:ICS-Level"/> </xs:simpleType> </xs:union> </xs:simpleType> |