copycontrol.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema targetNamespace="urn:ietf:params:xml:ns:copycontrol"
  3. xmlns="urn:ietf:params:xml:ns:copycontrol"
  4. xmlns:rls="urn:ietf:params:xml:ns:resource-lists"
  5. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  6. elementFormDefault="qualified"
  7. attributeFormDefault="unqualified">
  8. <xs:annotation>
  9. <xs:documentation xml:lang="en">
  10. Adds the copyControl, anonymize, and count attributes
  11. to URIs included in a resource list.
  12. </xs:documentation>
  13. </xs:annotation>
  14. <xs:import namespace="urn:ietf:params:xml:ns:resource-lists"
  15. schemaLocation="urn:ietf:params:xml:schema:resource-lists"/>
  16. <xs:attribute name="copyControl">
  17. <xs:simpleType>
  18. <xs:restriction base="xs:string">
  19. <xs:enumeration value="to"/>
  20. <xs:enumeration value="cc"/>
  21. <xs:enumeration value="bcc"/>
  22. </xs:restriction>
  23. </xs:simpleType>
  24. </xs:attribute>
  25. <xs:attribute name="anonymize" type="xs:boolean" default="false"/>
  26. <xs:attribute name="count" type="xs:nonNegativeInteger"
  27. default="1"/>
  28. </xs:schema>