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

  <complexType name="test-1">
    <choice maxOccurs="5">
      <choice maxOccurs="unbounded"> <!-- 1..unbounded-->
        <element name="a" type="int"/>
        <element name="b" type="int"/>
      </choice>
    </choice>
  </complexType>

  <complexType name="root">
    <sequence>
      <element name="test-1" type="t:test-1"/>
    </sequence>
  </complexType>

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

</schema>