OCA reporting engine fork for dev and update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
651 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3. <!-- Complex types -->
  4. <xs:complexType name="t_partners">
  5. <xs:sequence>
  6. <xs:element name="partner"
  7. type="t_partner"
  8. minOccurs="0"
  9. maxOccurs="unbounded"/>
  10. </xs:sequence>
  11. </xs:complexType>
  12. <xs:complexType name="t_partner">
  13. <xs:sequence>
  14. <xs:element name="id" type="xs:int"/>
  15. <xs:element name="name" type="xs:string"/>
  16. <xs:element name="children" type="t_partners" minOccurs="0"/>
  17. </xs:sequence>
  18. </xs:complexType>
  19. <!-- Schema -->
  20. <xs:element name="partners" type="t_partners"/>
  21. </xs:schema>