export_merged.xsd 1.1 KB

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:redefine schemaLocation="urn:magento:module:Magento_ImportExport:etc/export.xsd">
  10. <xs:complexType name="entityDeclaration">
  11. <xs:complexContent>
  12. <xs:restriction base="entityDeclaration">
  13. <xs:attribute name="label" type="xs:string" use="required" />
  14. <xs:attribute name="model" type="modelName" use="required" />
  15. </xs:restriction>
  16. </xs:complexContent>
  17. </xs:complexType>
  18. <xs:complexType name="fileFormatDeclaration">
  19. <xs:complexContent>
  20. <xs:restriction base="fileFormatDeclaration">
  21. <xs:attribute name="label" type="xs:string" use="required" />
  22. <xs:attribute name="model" type="modelName" use="required" />
  23. </xs:restriction>
  24. </xs:complexContent>
  25. </xs:complexType>
  26. </xs:redefine>
  27. </xs:schema>