forked from datasets/cpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
47 lines (47 loc) · 1.07 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
{
"name": "cpi",
"title": "Annual Consumer Price Index (CPI)",
"description": "Annual Consumer Price Index (CPI) for most countries in the world. Reference year is 2005.",
"licenses" : [
{
"id": "odc-pddl",
"url": "http://opendatacommons.org/licenses/pddl/"
}
],
"keywords": [ "CPI", "World", "Consumer Price Index", "Annual Data", "The World Bank" ],
"version": "1.0.1",
"last_updated": "2013-05-27",
"sources": [
{
"name": "The World Bank",
"web": "http://data.worldbank.org/indicator/FP.CPI.TOTL"
}
],
"resources": [
{
"path": "data/cpi.csv",
"schema": {
"fields": [
{
"id": "Country Name",
"type": "string"
},
{
"id": "Country Code",
"type": "string"
},
{
"id": "Year",
"type": "date",
"format": "yyyy"
},
{
"id": "CPI",
"description": "CPI (where 2005=100)",
"type": "number"
}
]
}
}
]
}