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="ReplyVerbosity"> <xs:annotation> <xs:appinfo> terse (0) -- only the location , -- of the requested information complete (1) -- the requested information types only extended (2) -- the requested information types and -- any related (linked) information types </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="2"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="terse"/> <xs:enumeration value="complete"/> <xs:enumeration value="extended"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |