summaryrefslogtreecommitdiff
path: root/tests/cxx/parser/validation/all/test.xsd
blob: 1f670e380fe94aad58274c83191fef251c0eacb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">

  <complexType name="all">
    <all minOccurs="1">
      <element name="a" type="string"/>
      <element name="b" type="string"/>
      <element name="c" type="string" minOccurs="0"/>
    </all>
  </complexType>

  <complexType name="type">
    <sequence>
      <element name="all" type="t:all" maxOccurs="unbounded"/>
    </sequence>
  </complexType>

  <element name="root" type="t:type"/>

</schema>