| 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="SpillType"> <xs:annotation> <xs:appinfo> solid (1) liquid (2) vapor (3) -- any gas or vapor </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="3"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="solid"/> <xs:enumeration value="liquid"/> <xs:enumeration value="vapor"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |