integration_file.xsd 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Schema for integration configuration.
  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:include schemaLocation="urn:magento:module:Magento_Integration:etc/integration/integration_base.xsd" />
  12. <xs:element name="config">
  13. <xs:complexType>
  14. <xs:sequence>
  15. <xs:element name="integration" type="integrationType" maxOccurs="unbounded" minOccurs="1"/>
  16. </xs:sequence>
  17. </xs:complexType>
  18. </xs:element>
  19. <xs:complexType name="integrationType">
  20. <xs:all>
  21. <xs:element name="email" type="emailType" minOccurs="0" maxOccurs="1"/>
  22. <xs:element name="endpoint_url" type="urlType" minOccurs="0" maxOccurs="1"/>
  23. <xs:element name="identity_link_url" type="urlType" minOccurs="0" maxOccurs="1"/>
  24. <xs:element name="resources" type="resourcesType" minOccurs="0" maxOccurs="1"/>
  25. </xs:all>
  26. <xs:attribute name="name" type="integrationNameType" use="required"/>
  27. </xs:complexType>
  28. </xs:schema>