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="RatingType"> <xs:annotation> <xs:appinfo> unknown (0) -- use when rating systems is not known nfpa (1) -- use when NFPA 704 "diamond ratings" are the source hmis (2) -- use when HMIS "rectangle ratings" are the source </xs:appinfo> <xs:documentation> values to 127 reserved for std use values 128 to 255 reserved for local use </xs:documentation> </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="nfpa"/> <xs:enumeration value="hmis"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |