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="CC-RequestDisposition"> <xs:annotation> <xs:appinfo> approved (1) acknowledged (2) serviced (3) timed out (4) denied (5) requested (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="approved"/> <xs:enumeration value="acknowledged"/> <xs:enumeration value="serviced"/> <xs:enumeration value="timed out"/> <xs:enumeration value="denied"/> <xs:enumeration value="requested"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |