20 lines
576 B
XML
20 lines
576 B
XML
|
<?xml version="1.0"?>
|
||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||
|
targetNamespace="http://mmo.to"
|
||
|
xmlns="http://mmo.to"
|
||
|
elementFormDefault="qualified">
|
||
|
<xs:include schemaLocation="editorgroup.xsd" />
|
||
|
<xs:include schemaLocation="editorelement.xsd" />
|
||
|
|
||
|
<xs:element name="protocol" type="protocolType" />
|
||
|
|
||
|
<xs:complexType name="protocolType">
|
||
|
<xs:element name="title" type="xs:string"/>
|
||
|
<xs:element name="description" type="xs:string"/>
|
||
|
<xs:sequence minOccurs="1">
|
||
|
<xs:element name="group" type="groupType"/>
|
||
|
</xs:sequence>
|
||
|
</xs:complexType>
|
||
|
|
||
|
</xs:schema>
|