html.xsd 772 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  9. <xs:complexType name="htmlType">
  10. <xs:sequence>
  11. <xs:element type="htmlAttributeType" name="attribute"/>
  12. </xs:sequence>
  13. </xs:complexType>
  14. <xs:complexType name="htmlAttributeType">
  15. <xs:simpleContent>
  16. <xs:extension base="xs:string">
  17. <xs:attribute type="xs:string" name="name"/>
  18. <xs:attribute type="xs:string" name="value"/>
  19. </xs:extension>
  20. </xs:simpleContent>
  21. </xs:complexType>
  22. </xs:schema>