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="CharSet"> <xs:annotation> <xs:appinfo> asciiOnly (0) latin1 (1) latin2 (2) utf8 (127) </xs:appinfo> <xs:documentation> DEFAULT 0 values to 127 reserved for std use values 128 to 255 reserved for local use </xs:documentation> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="127"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="asciiOnly"/> <xs:enumeration value="latin1"/> <xs:enumeration value="latin2"/> <xs:enumeration value="utf8"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |