Showing:

Diagrams
Facets
Instances
Model
Properties
Source
Used by
Element hexit
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_digit.tmp#digit ansi2003_xsd_Element_hexit.tmp#hexit_a_to_f
Properties
content complex
Used by
Model
Children a_to_f, digit
Instance
<hexit xmlns="http://www.sqlparser.com/xml/ansi2003">
  <digit>{1,1}</digit>
  <a_to_f>{1,1}</a_to_f>
</hexit>
Source
<xs:element name="hexit">
  <xs:complexType>
    <xs:choice>
      <xs:element ref="digit"/>
      <xs:element name="a_to_f">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:pattern value="[a-f][A-F]"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
    </xs:choice>
  </xs:complexType>
</xs:element>
Element hexit / a_to_f
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram
Type restriction of xs:string
Properties
content simple
Facets
pattern [a-f][A-F]
Source
<xs:element name="a_to_f">
  <xs:simpleType>
    <xs:restriction base="xs:string">
      <xs:pattern value="[a-f][A-F]"/>
    </xs:restriction>
  </xs:simpleType>
</xs:element>