mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[IMP] report_xml: black, isort, prettier
This commit is contained in:
committed by
Enric Tobella
parent
d828bf55a7
commit
09d1d54ee6
@@ -1,22 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
|
||||
<xs:element name="root" type="root_type"/>
|
||||
<xs:element name="root" type="root_type" />
|
||||
|
||||
<xs:complexType name="root_type">
|
||||
<xs:sequence>
|
||||
<xs:element name="user"
|
||||
type="user_type"
|
||||
minOccurs="0"
|
||||
maxOccurs="unbounded"/>
|
||||
<xs:element
|
||||
name="user"
|
||||
type="user_type"
|
||||
minOccurs="0"
|
||||
maxOccurs="unbounded"
|
||||
/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="user_type">
|
||||
<xs:sequence>
|
||||
<xs:element name="id" type="xs:int"/>
|
||||
<xs:element name="name" type="xs:string"/>
|
||||
<xs:element name="vat" type="xs:string" minOccurs="0"/>
|
||||
<xs:element name="id" type="xs:int" />
|
||||
<xs:element name="name" type="xs:string" />
|
||||
<xs:element name="vat" type="xs:string" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user