timed-status.xml 1.0 KB

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:ts="urn:ietf:params:xml:ns:pidf:timed-status" xmlns:pidf="urn:ietf:params:xml:ns:pidf" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:ietf:params:xml:ns:pidf:timed-status" elementFormDefault="qualified" attributeFormDefault="unqualified">
  3. <xs:import namespace="urn:ietf:params:xml:ns:pidf" schemaLocation="pidf.xsd"/>
  4. <xs:annotation>
  5. <xs:documentation>
  6. Describes timed-status tuple extensions for PIDF.
  7. </xs:documentation>
  8. </xs:annotation>
  9. <xs:element name="timed-status" type="ts:timed-status"/>
  10. <xs:complexType name="timed-status">
  11. <xs:sequence>
  12. <xs:element name="basic" type="pidf:basic" minOccurs="0"/>
  13. <xs:element name="note" type="pidf:note" minOccurs="0"/>
  14. <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  15. </xs:sequence>
  16. <xs:attribute name="from" type="xs:dateTime" use="required"/>
  17. <xs:attribute name="until" type="xs:dateTime"/>
  18. </xs:complexType>
  19. </xs:schema>