bernard
authored
|
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
28
29
30
31
32
33
|
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="info">
<xs:complexType>
<xs:sequence>
<xs:element type="xs:string" name="IP"/>
<xs:element type="xs:short" name="countryid"/>
<xs:element type="xs:string" name="country"/>
<xs:element type="xs:string" name="fips"/>
<xs:element type="xs:string" name="iso2"/>
<xs:element type="xs:string" name="iso3"/>
<xs:element type="xs:short" name="ison"/>
<xs:element type="xs:string" name="internet"/>
<xs:element type="xs:string" name="comment"/>
<xs:element type="xs:short" name="regionid"/>
<xs:element type="xs:string" name="region"/>
<xs:element type="xs:string" name="code"/>
<xs:element type="xs:string" name="adm"/>
<xs:element type="xs:short" name="cityid"/>
<xs:element type="xs:string" name="city"/>
<xs:element type="xs:float" name="latitude"/>
<xs:element type="xs:float" name="longitude"/>
<xs:element type="xs:string" name="timezone"/>
<xs:element type="xs:string" name="dmaid"/>
<xs:element type="xs:string" name="dma"/>
<xs:element type="xs:string" name="market"/>
<xs:element type="xs:byte" name="certainty"/>
<xs:element type="xs:string" name="locationcode"/>
<xs:element type="xs:string" name="ipaddress"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
|