This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
NetworkPacketComposer/xml/protocol.xsd

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>