aboutsummaryrefslogtreecommitdiffstats
path: root/samples/m0.xsd
blob: abbafe1803d9ea8a940db1b061b4fed7ab80dd42 (plain) (blame)
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
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!--this schema is used to validate the report generated and is only meant as a dev test-->
<!--this is meant to test mutator-lvl0 not tinyxml2-->

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

  <mutagen:element name="DoomedStrain">
    <mutagen:complexType>
      <mutagen:sequence>
        <mutagen:element name="Strain" maxOccurs="unbounded"/>
      </mutagen:sequence>
    </mutagen:complexType>
  </mutagen:element>

  <mutagen:element name="DoomedStrains">
    <mutagen:complexType>
      <mutagen:sequence>
        <mutagen:element name="DoomedStrain" maxOccurs="unbounded"/>
      </mutagen:sequence>
    </mutagen:complexType>
  </mutagen:element>

  <mutagen:element name="WeakStrains"/>

  <mutagen:element name="Report">
    <mutagen:complexType>
      <mutagen:sequence>
        <mutagen:element name="DoomedStrains" maxOccurs="unbounded"/>
        <mutagen:element name="WeakStrains" maxOccurs="unbounded"/>
      </mutagen:sequence>
    </mutagen:complexType>
  </mutagen:element>

</mutagen:schema>