-
Notifications
You must be signed in to change notification settings - Fork 57
/
datapackage.json
56 lines (56 loc) · 1.44 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
{
"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": "2024-10-24",
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"name": "gdp",
"resources": [
{
"name": "gdp",
"path": "data/gdp.csv",
"schema": {
"fields": [
{
"name": "Country Name",
"type": "string"
},
{
"name": "Country Code",
"type": "string"
},
{
"name": "Year",
"type": "year"
},
{
"description": "GDP in current USD",
"name": "Value",
"type": "number"
}
]
}
}
],
"sources": [
{
"name": "World Bank and OECD",
"path": "http://data.worldbank.org/indicator/NY.GDP.MKTP.CD",
"title": "World Bank and OECD"
}
],
"title": "Country, Regional and World GDP (Gross Domestic Product)",
"version": "2024",
"collection": "economic-data"
}