esconfig.xsd 870 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * This schema must be used to validate esconfig.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="1">
  14. <xs:element name="stemmer" type="mixedDataType" />
  15. <xs:element name="stopwords_file" type="mixedDataType" />
  16. </xs:choice>
  17. </xs:complexType>
  18. <xs:complexType name="mixedDataType">
  19. <xs:choice maxOccurs="unbounded" minOccurs="1">
  20. <xs:element type="xs:string" name="default" minOccurs="1" maxOccurs="1" />
  21. <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" />
  22. </xs:choice>
  23. </xs:complexType>
  24. </xs:schema>