-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathdatapackage.json
78 lines (78 loc) · 2.29 KB
/
datapackage.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"title": "IPv4 geolocation",
"name": "geoip2-ipv4",
"licenses": [
{
"name": "odc-pddl",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Public Domain Dedication and License"
}
],
"sources": [
{
"title": "Maxmind GeoLite2",
"path": "http://dev.maxmind.com/geoip/geoip2/geolite2/"
}
],
"contributors": [
{
"name": "Eduardo Bejar",
"email": "edobejar@gmail.com",
"path": "http://www.fundapi.org",
"role": "maintainer"
}
],
"resources": [
{
"name": "geoip2-ipv4",
"path": "data/geoip2-ipv4.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "network",
"description": "This is the IPv4 network in CIDR format such as 2.21.92.0/29.",
"type": "string"
},
{
"name": "geoname_id",
"description": "A unique identifier for the network's location as specified by GeoNames.",
"type": "integer"
},
{
"name": "continent_code",
"description": "The continent code for this IP. Possible codes are: AF - Africa, AS - Asia, EU - Europe, NA - North America, OC - Oceania, SA - South America",
"type": "string"
},
{
"name": "continent_name",
"description": "The continent name for this location",
"type": "string"
},
{
"name": "country_iso_code",
"description": "A two-character ISO 3166-1 country code for the country associated with the location.",
"type": "string"
},
{
"name": "country_name",
"description": "The country name for this location.",
"type": "string"
},
{
"name": "is_anonymous_proxy",
"description": "A 1 if the network is an anonymous proxy, otherwise 0.",
"type": "boolean"
},
{
"name": "is_satellite_provider",
"description": "A 1 if the network is for a satellite provider that provides service to multiple countries, otherwise 0.",
"type": "boolean"
}
]
}
}
],
"collection": "reference-data"
}