-
Notifications
You must be signed in to change notification settings - Fork 15
/
datapackage.json
52 lines (52 loc) · 1.53 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
{
"description": "Data are sourced from the World Bank, International Comparison Program database. One dataset is provided: PPP conversion factor, GDP (LCU per international $).",
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"name": "ppp",
"resources": [
{
"format": "csv",
"mediatype": "text/csv",
"name": "ppp-gdp",
"path": "data/ppp-gdp.csv",
"schema": {
"fields": [
{
"name": "Country",
"type": "string"
},
{
"description": "ISO 3166-1 alpha-2 code",
"name": "Country ID",
"type": "string"
},
{
"description": "Relevant year",
"name": "Year",
"type": "year"
},
{
"description": "PPP conversion factor, GDP (LCU per international $)",
"name": "PPP",
"type": "number"
}
]
}
}
],
"sources": [
{
"name": "PPP conversion factor, GDP (LCU per international $). World Bank, International Comparison Program database.",
"path": "http://data.worldbank.org/indicator/PA.NUS.PPP",
"title": "PPP conversion factor, GDP (LCU per international $). World Bank, International Comparison Program database."
}
],
"title": "Purchasing power parity (PPP)",
"version": "0.1.0",
"collection": "economic-data"
}