-
Notifications
You must be signed in to change notification settings - Fork 149
/
datapackage.json
54 lines (54 loc) · 1.28 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
{
"description": "Population figures for countries, regions (e.g. Asia) and the world. Data comes originally from World Bank and has been converted into standard CSV.",
"keywords": [
"Population",
"World",
"Time series"
],
"last_updated": "2023-05-04",
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"name": "population",
"resources": [
{
"format": "csv",
"name": "population",
"path": "data/population.csv",
"schema": {
"fields": [
{
"name": "Country Name",
"type": "string"
},
{
"name": "Country Code",
"type": "string"
},
{
"name": "Year",
"type": "year"
},
{
"name": "Value",
"type": "number"
}
]
}
}
],
"sources": [
{
"name": "World Bank",
"path": "http://data.worldbank.org/indicator/SP.POP.TOTL",
"title": "World Bank"
}
],
"title": "Population figures for countries, regions (e.g. Asia) and the world",
"version": "2023-03-30",
"collection": "demographics"
}