Documentation for ATIS-Draft-03-00-79

Simple Type: CharSet

[Table of contents]

Super-types: None
Sub-types: None
Name CharSet
Used by (from the same schema document) Complex Type Head
Content
  • Union of following types:
    • Locally defined type:
      • Base XSD Type: unsignedInt
      • 0 <= value <= 127
    • Locally defined type:
      • Base XSD Type: string
      • value comes from list: {'asciiOnly'|'latin1'|'latin2'|'utf8'}
Documentation DEFAULT 0 values to 127 reserved for std use values 128 to 255 reserved for local use
Application Data asciiOnly (0) latin1 (1) latin2 (2) utf8 (127)
Diagram
Schema Component Representation
<xs:simpleType name="CharSet">
<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>