aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/hello/hello.xsd
blob: 66ea0210c511f20386ff42d79bfd064a6848bf91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>

<!--

file      : examples/cxx/hybrid/hello/hello.xsd
author    : Boris Kolpackov <boris@codesynthesis.com>
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>