forked from guibranco/BancosBrasileiros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.xml
27 lines (27 loc) · 1.27 KB
/
schema.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="banks">
<xs:complexType>
<xs:sequence>
<xs:element name="bank" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element type="xs:string" name="COMPE"/>
<xs:element type="xs:string" name="ISPB"/>
<xs:element type="xs:string" name="Document"/>
<xs:element type="xs:string" name="LongName"/>
<xs:element type="xs:string" name="ShortName"/>
<xs:element type="xs:string" name="Network" />
<xs:element type="xs:string" name="Type" />
<xs:element type="xs:string" name="PixType" />
<xs:element type="xs:string" name="Url" />
<xs:element type="xs:string" name="DateOperationStarted" />
<xs:element type="xs:string" name="DatePixStarted" />
<xs:element type="xs:string" name="DateRegistered"/>
<xs:element type="xs:string" name="DateUpdated"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>