address_formats.xsd 975 B

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">
  10. <xs:complexType>
  11. <xs:sequence>
  12. <xs:element name="format" type="formatType" minOccurs="1" maxOccurs="unbounded" />
  13. </xs:sequence>
  14. </xs:complexType>
  15. </xs:element>
  16. <xs:complexType name="formatType">
  17. <xs:annotation>
  18. <xs:documentation>
  19. Address format declaration.
  20. </xs:documentation>
  21. </xs:annotation>
  22. <xs:attribute name="code" type="xs:string" use="required" />
  23. <xs:attribute name="title" type="xs:string" use="required" />
  24. <xs:attribute name="escapeHtml" type="xs:boolean" use="optional" />
  25. <xs:attribute name="renderer" type="xs:string" use="optional" />
  26. </xs:complexType>
  27. </xs:schema>