summaryrefslogtreecommitdiff
path: root/examples/cxx/parser/hello/hello.xsd
blob: be69957f10e7a629b03ff669ddc27041c3717d48 (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"?>

<!--

file      : examples/cxx/parser/hello/hello.xsd
copyright : not copyrighted - public domain

-->

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

  <xsd:complexType name="hello">
    <xsd:sequence>
      <xsd:element name="greeting" type="xsd:string"/>
      <xsd:element name="name" type="xsd:string" maxOccurs="unbounded"/>
    </xsd:sequence>
  </xsd:complexType>

  <xsd:element name="hello" type="hello"/>

</xsd:schema>