XEP-0319 v1.0 -- add XML Schema

This commit is contained in:
Tobias Markmann 2015-04-14 23:15:27 +02:00
parent fdccd56700
commit b24ed1e93d
1 changed files with 26 additions and 0 deletions

View File

@ -79,6 +79,32 @@
]]></example>
</section2>
</section1>
<section1 topic='XML Schema' anchor='schema'>
<code><![CDATA[
<?xml version="1.0" encoding="utf-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
targetNamespace="urn:xmpp:idle:1"
xmlns="urn:xmpp:idle:1">
<xs:annotation>
<xs:documentation>
The protocol documented by this schema is defined in
XEP-0319: http://www.xmpp.org/extensions/xep-0319.html
</xs:documentation>
</xs:annotation>
<xs:element name="idle">
<xs:complexType>
<xs:attribute name="since" use="required" type="xs:string"/>
</xs:complexType>
</xs:element>
</xs:schema>
]]></code>
</section1>
<section1 topic='Acknowledgements' anchor='ack'>
<p>Thanks to Florian Schmaus, Christian Schudt, and Lance Stout for their helpful comments.</p>
</section1>