blob: b426e8a24fc14537c1577e4e51721a2ed5ccc537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
<?xml version="1.0" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://www.w3.org/2001/XMLSchema XMLSchema.xsd">
  
  <xsd:complexType name="Test">
    <xsd:sequence>
      <xsd:element name="name" type="xsd:string"/>
    </xsd:sequence>
  </xsd:complexType>
  <xsd:element name="test" type="Test"/>
</xsd:schema>
  |