config.xsd 856 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * This schema must be used to validate config.xml files
  5. *
  6. * Copyright © Magento, Inc. All rights reserved.
  7. * See COPYING.txt for license details.
  8. */
  9. -->
  10. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  11. <xs:element name="config" type="configType" />
  12. <xs:complexType name="configType" mixed="true">
  13. <xs:choice maxOccurs="unbounded" minOccurs="0">
  14. <xs:element name="default" type="mixedDataType" />
  15. <xs:element name="stores" type="mixedDataType" />
  16. <xs:element name="websites" type="mixedDataType" />
  17. </xs:choice>
  18. </xs:complexType>
  19. <xs:complexType name="mixedDataType">
  20. <xs:choice>
  21. <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" />
  22. </xs:choice>
  23. </xs:complexType>
  24. </xs:schema>