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="Ejection"> <xs:annotation> <xs:appinfo> not ejected (1) totally ejected (2) partially ejected (3) not applicable (4) not reported (5) unknown (6) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="6"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="not ejected"/> <xs:enumeration value="totally ejected"/> <xs:enumeration value="partially ejected"/> <xs:enumeration value="not applicable"/> <xs:enumeration value="not reported"/> <xs:enumeration value="unknown"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |