namespace | http://www.TCIP-Adopted-03-00-01 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="CPT-SubscriptionType"> <xs:annotation> <xs:appinfo> Query (1) Periodic (2) Event (3) Cancel (99) CancelAll (100) -- 4-127 reserved -- 128-255 reserved </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="100"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="Query"/> <xs:enumeration value="Periodic"/> <xs:enumeration value="Event"/> <xs:enumeration value="Cancel"/> <xs:enumeration value="CancelAll"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |