im-iscomposing.xsd 895 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema targetNamespace="urn:ietf:params:xml:ns:im-iscomposing"
  3. elementFormDefault="qualified"
  4. attributeFormDefault="unqualified"
  5. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  6. xmlns:tns="urn:ietf:params:xml:ns:im-iscomposing">
  7. <xs:element name="isComposing">
  8. <xs:complexType>
  9. <xs:sequence>
  10. <xs:element name="state" type="xs:string"/>
  11. <xs:element name="lastactive" type="xs:dateTime"
  12. minOccurs="0"/>
  13. <xs:element name="contenttype" type="xs:string"
  14. minOccurs="0"/>
  15. <xs:element name="refresh" type="xs:positiveInteger"
  16. minOccurs="0"/>
  17. <xs:any namespace="##other" processContents="lax"
  18. minOccurs="0" maxOccurs="unbounded"/>
  19. </xs:sequence>
  20. </xs:complexType>
  21. </xs:element>
  22. </xs:schema>