summaryrefslogtreecommitdiff
path: root/tests/schema/inheritance/cycle.xsd
blob: c705311da6e40a3d2d5f33ce83bef106215a3226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://www.w3.org/2001/XMLSchema XMLSchema.xsd"
	    xmlns:test="http://www.codesynthesis.com/xmlns/test"
            targetNamespace="http://www.codesynthesis.com/xmlns/test">

  <xsd:complexType name="Base">
    <xsd:sequence>
      <xsd:element name="e1">
        <xsd:complexType>
          <xsd:complexContent>
            <xsd:extension base="test:Derived">
              <xsd:sequence>
                <xsd:element name="e2" type="xsd:int"/>
              </xsd:sequence>
            </xsd:extension>
          </xsd:complexContent>
        </xsd:complexType>
      </xsd:element>
    </xsd:sequence>
  </xsd:complexType>

  <xsd:complexType name="Derived">
    <xsd:complexContent>
      <xsd:extension base="test:Base">
        <xsd:sequence>
          <xsd:element name="e3" type="xsd:int"/>
        </xsd:sequence>
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>

</xsd:schema>