namespace | http://www.IM-Draft-03-00-44a | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string, local:TrackStatus) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="TrackStatus"> <xs:annotation> <xs:appinfo> no reason for concern (1) actively reporting conditions (2) -- OK condition no recent reports there is concern (3) there is reason for concern (4) immediate rescue needed (5) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="5"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="no reason for concern"/> <xs:enumeration value="actively reporting conditions"/> <xs:enumeration value="no recent reports there is concern"/> <xs:enumeration value="there is reason for concern"/> <xs:enumeration value="immediate rescue needed"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="local:TrackStatus"/> </xs:simpleType> </xs:union> </xs:simpleType> |