queue_merged.xsd 842 B

1234567891011121314151617181920212223242526
  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:include schemaLocation="urn:magento:framework-message-queue:etc/queue_base.xsd" />
  10. <xs:element name="config">
  11. <xs:annotation>
  12. <xs:documentation>
  13. @deprecated
  14. </xs:documentation>
  15. </xs:annotation>
  16. <xs:complexType>
  17. <xs:choice minOccurs="0" maxOccurs="unbounded">
  18. <xs:element name="broker" type="brokerType"/>
  19. </xs:choice>
  20. </xs:complexType>
  21. <xs:unique name="broker-unique-name">
  22. <xs:selector xpath="broker"/>
  23. <xs:field xpath="@topic"/>
  24. </xs:unique>
  25. </xs:element>
  26. </xs:schema>