Blame test/schemas/union2_1.xsd

Packit Service a31ea6
Packit Service a31ea6
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"  targetNamespace="urn:test:foo">
Packit Service a31ea6
  <xsd:element name="ELEMENTS">
Packit Service a31ea6
    <xsd:simpleType>
Packit Service a31ea6
      <xsd:union>
Packit Service a31ea6
        <xsd:simpleType>
Packit Service a31ea6
          <xsd:restriction base="xsd:int">
Packit Service a31ea6
            <xsd:minInclusive value="10"/>
Packit Service a31ea6
            <xsd:maxInclusive value="20"/>
Packit Service a31ea6
          </xsd:restriction>
Packit Service a31ea6
        </xsd:simpleType>
Packit Service a31ea6
        <xsd:simpleType>
Packit Service a31ea6
          <xsd:restriction base="xsd:int">
Packit Service a31ea6
            <xsd:minInclusive value="30"/>
Packit Service a31ea6
            <xsd:maxInclusive value="40"/>
Packit Service a31ea6
          </xsd:restriction>
Packit Service a31ea6
        </xsd:simpleType>
Packit Service a31ea6
      </xsd:union>
Packit Service a31ea6
    </xsd:simpleType>
Packit Service a31ea6
  </xsd:element>
Packit Service a31ea6
</xsd:schema>