-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathdatapackage.json
65 lines (65 loc) · 1.69 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
{
"name": "geo-countries",
"title": "Country Polygons as GeoJSON",
"version": "0.2.0",
"description": "geodata data package providing geojson polygons for all the world's countries",
"repository": {
"type": "git",
"url": "git://github.com/datasets/geo-countries.git"
},
"sources": [
{
"name": "Natural Earth",
"path": "http://www.naturalearthdata.com/downloads/10m-cultural-vectors/",
"title": "Natural Earth"
}
],
"keywords": [
"geodata",
"vector",
"country"
],
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"resources": [
{
"name": "countries",
"path": "data/countries.geojson",
"format": "geojson",
"mediatype": "application/json",
"schema": {
"fields": [
{
"name": "name",
"description": "Common name of the country",
"type": "string"
},
{
"name": "ISO3166-1-Alpha-3",
"description": "3 characters code for the country, according to ISO3166 standard",
"type": "string"
}
]
},
"foreignKeys": [
{
"fields": "ISO3166-1-Alpha-3",
"reference": {
"datapackage": "https://github.com/datasets/country-codes/",
"resource": "country-codes",
"fields": "ISO3166-1-Alpha-3"
}
}
]
}
],
"homepage": "http://github.com/datasets/geo-countries",
"collection": "geojson",
"has_premium": true,
"has_solutions": ["global-country-region-reference-data"]
}