cache.xsd 1.0 KB

1234567891011121314151617181920212223242526272829
  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:element name="config" type="configType" />
  10. <xs:complexType name="configType">
  11. <xs:sequence>
  12. <xs:element type="cacheType" name="type" maxOccurs="unbounded" minOccurs="0"/>
  13. </xs:sequence>
  14. </xs:complexType>
  15. <xs:complexType name="cacheType">
  16. <xs:annotation>
  17. <xs:documentation>Cache type declaration</xs:documentation>
  18. </xs:annotation>
  19. <xs:choice maxOccurs="unbounded" minOccurs="0">
  20. <xs:element name="label" type="xs:string" />
  21. <xs:element name="description" type="xs:string" />
  22. </xs:choice>
  23. <xs:attribute type="xs:string" name="name" use="required"/>
  24. <xs:attribute type="xs:string" name="translate" use="optional"/>
  25. <xs:attribute type="xs:string" name="instance" use="optional"/>
  26. </xs:complexType>
  27. </xs:schema>