summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/naming/camel/test.xsd
blob: 7d0a74517b3f1b6d437b3e70c104285b7dd8a3af (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
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:t="test" targetNamespace="test">

  <simpleType name="gender">
    <restriction base="string">
      <enumeration value="male"/>
      <enumeration value="female"/>
    </restriction>
  </simpleType>

  <complexType name="type">
    <sequence>
      <element name="foo" minOccurs="0">
        <complexType>
          <sequence>
            <element name="a" type="string"/>
            <element name="b" type="string"/>
          </sequence>
        </complexType>
      </element>
      <element name="Bar" type="string"/>
      <element name="Baz" type="string" maxOccurs="unbounded"/>
      <any namespace="other" processContents="skip" maxOccurs="unbounded"/>
    </sequence>
    <attribute name="Fox" type="string" default="hello"/>
    <anyAttribute namespace="##other" processContents="skip"/>
  </complexType>

  <element name="Root" type="string"/>

</schema>