Blame view

src/main/xsd/issuesByProject.xsd 413 Bytes
bernard authored
1
<?xml version="1.0" encoding="UTF-8"?>
bernard authored
2
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
bernard authored
3
    <xs:include schemaLocation="types.xsd"/>
bernard authored
4 5
    <xs:element name="issues">
        <xs:complexType>
bernard authored
6 7
            <xs:sequence id="issues" minOccurs="0" maxOccurs="unbounded">
                <xs:element name="issue" type="issueType"/>
bernard authored
8 9 10 11
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>