aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/hybrid/iterator/test.xsd
blob: eb41ee100d87c8e2129651285b8bf20391a197c4 (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
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">

  <complexType name="fix">
    <sequence>
      <element name="a" type="int"/>
    </sequence>
  </complexType>

  <complexType name="var">
    <sequence>
      <element name="a" type="string"/>
      <element name="b" type="int" maxOccurs="unbounded"/>
    </sequence>
  </complexType>

  <complexType name="type">
    <sequence>
      <element name="f" type="t:fix" maxOccurs="unbounded"/>
      <element name="v" type="t:var" maxOccurs="unbounded"/>
    </sequence>
  </complexType>

</schema>