forked from datasets/gdp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
50 lines (50 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
{
"description": "Country, regional and world GDP in current US Dollars ($). Regional means collections of countries e.g. Europe & Central Asia. Data is sourced from the World Bank and turned into a standard normalized CSV.",
"image": "http://assets.okfn.org/p/opendatahandbook/img/data-wrench.png",
"keywords": [
"GDP",
"World",
"Gross Domestic Product",
"Time series"
],
"last_updated": "2011-09-21",
"license": "PDDL-1.0",
"name": "gdp",
"resources": [
{
"name": "gdp",
"path": "data/gdp.csv",
"schema": {
"fields": [
{
"name": "Country Name",
"type": "string"
},
{
"foreignkey": "iso-3-geo-codes/id",
"name": "Country Code",
"type": "string"
},
{
"format": "any",
"name": "Year",
"type": "date"
},
{
"description": "GDP in current USD",
"name": "Value",
"type": "number"
}
]
}
}
],
"sources": [
{
"name": "World Bank and OECD",
"web": "http://data.worldbank.org/indicator/NY.GDP.MKTP.CD"
}
],
"title": "Country, Regional and World GDP (Gross Domestic Product)",
"version": "2011"
}