-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatapackage.json
52 lines (52 loc) · 1.41 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
{
"sources": [
{
"title": "United Nations Treaty Collection",
"web": "https://treaties.un.org/Pages/ViewDetails.aspx?src=TREATY&mtdsg_no=XXVII-2-f&chapter=27&clang=_en"
}
],
"resources": [
{
"name": "kigali-amendment",
"path": "data/kigali-amendment.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Date",
"type": "date",
"description": "Date of Acceptance, Ratification or Approval"
},
{
"name": "Participation Type",
"type": "string",
"description": "How has this country participated in the Kigali Amendment",
"constraints": {
"enum": [
"Ratification",
"Acceptance",
"Approval",
"Provisional application under Article V"
]
}
}
],
"primaryKey": "Code"
}
}
],
"name": "kigali-amendment",
"title": "Ratification Status of the Kigali Amendment",
"description": "Ratification Status of the Kigali Amendment to the Montreal Protocol on Substances that Deplete the Ozone Layer"
}