W3C XML Schema (XSD) Editor & Validator
The W3C Schema (XSD) is the recommended schema format and EditiX supports the 1.0 and 1.1 specifications. You can design a schema graphically, generate one from an existing XML document, and produce XML instances from it.
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="chapter">
<xs:complexType>
<xs:sequence>
<xs:element name="title"/>
<xs:element name="p" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>