-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
42 lines (42 loc) · 1.01 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
{
"name": "refdata-country",
"title": "Reference data for countries",
"version": "0.1.0",
"resources": [
{
"name": "country",
"path": "data/country.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "id",
"type": "string",
"description": "ISO 3166-1 alpha-2 code representatio for country"
},
{
"name": "name",
"type": "string",
"description": "Name for given country"
},
{
"name": "slug",
"type": "string",
"description": "URL friendly expression for country"
},
{
"name": "region",
"type": "string",
"description": "Geographical region for country"
},
{
"name": "continent",
"type": "string",
"description": "Continent country is located on"
}
]
}
}
]
}