xml.xsd 678 B

1234567891011121314151617181920212223242526
  1. <xs:schema
  2. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3. targetNamespace="http://www.w3.org/XML/1998/namespace"
  4. attributeFormDefault="qualified"
  5. >
  6. <xs:attribute name="lang" type="xs:language" />
  7. <xs:attribute name="space" default="preserve">
  8. <xs:simpleType>
  9. <xs:restriction base="xs:NCName">
  10. <xs:enumeration value="default" />
  11. <xs:enumeration value="preserve" />
  12. </xs:restriction>
  13. </xs:simpleType>
  14. </xs:attribute>
  15. <xs:attribute name="base" type="xs:anyURI" />
  16. <xs:attributeGroup name="specialAttrs">
  17. <xs:attribute ref="xml:base" />
  18. <xs:attribute ref="xml:lang" />
  19. <xs:attribute ref="xml:space" />
  20. </xs:attributeGroup>
  21. </xs:schema>