-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
44 lines (44 loc) · 985 Bytes
/
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
{
"name": "European Union Road Safety Data",
"resources": [
{
"path": "eu_road_safety_data.csv",
"schema": {
"fields": [
{
"name": "Country",
"type": "string"
},
{
"name": "Year",
"type": "integer"
},
{
"name": "Area (thousands of km2)",
"type": "number"
},
{
"name": "Population",
"type": "integer"
},
{
"name": "GDP per capita",
"type": "integer"
},
{
"name": "Population density (inhabitants per km2)",
"type": "integer"
},
{
"name": "Vehicle ownership (per thousand inhabitants)",
"type": "integer"
},
{
"name": "Road deaths per Million Inhabitants",
"type": "integer"
}
]
}
}
]
}