catalog_attributes.xsd 890 B

123456789101112131415161718192021222324252627
  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 xmlns:xs="http://www.w3.org/2001/XMLSchema">
  9. <xs:element name="config">
  10. <xs:complexType>
  11. <xs:sequence>
  12. <xs:element name="group" type="attributeGroupType" minOccurs="1" maxOccurs="unbounded"/>
  13. </xs:sequence>
  14. </xs:complexType>
  15. </xs:element>
  16. <xs:complexType name="attributeGroupType">
  17. <xs:sequence>
  18. <xs:element name="attribute" type="attributeType" minOccurs="1" maxOccurs="unbounded"/>
  19. </xs:sequence>
  20. <xs:attribute name="name" type="xs:string" use="required"/>
  21. </xs:complexType>
  22. <xs:complexType name="attributeType">
  23. <xs:attribute name="name" type="xs:string" use="required"/>
  24. </xs:complexType>
  25. </xs:schema>