namespace | http://www.ATIS-Draft-03-00-79 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="SubscribeType"> <xs:annotation> <xs:appinfo> new (1) update replace (2) cancel (3) cancelAllPrior (4) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="4"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="new"/> <xs:enumeration value="update replace"/> <xs:enumeration value="cancel"/> <xs:enumeration value="cancelAllPrior"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |