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

  <complexType name="type">
    <sequence>
      <any namespace="##other" processContents="skip"/>
      <element name="foo" type="string"/>
      <any namespace="##targetNamespace" minOccurs="0" processContents="skip"/>
      <element name="bar" type="string"/>
      <any namespace="##other" maxOccurs="unbounded" processContents="skip"/>
    </sequence>
    <attribute name="att" type="string"/>
    <anyAttribute namespace="##any" processContents="skip"/>
  </complexType>

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

</schema>