21 lines
624 B
XML
21 lines
624 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="editorelement.xsd"/>
|
|
|
|
<xs:element name="group" type="groupType" />
|
|
|
|
<xs:complexType name="groupType">
|
|
<xs:element name="title" type="xs:string"/>
|
|
<xs:element name="description" type="xs:string"/>
|
|
<xs:sequence minOccurs="1">
|
|
<xs:element name="element" type="editorelement"/>
|
|
<xs:element name="group" type="groupType"/>
|
|
</xs:sequence>
|
|
<xs:element name="repeatable" type="xs:boolean"/>
|
|
</xs:complexType>
|
|
|
|
</xs:schema>
|