-
Notifications
You must be signed in to change notification settings - Fork 3
/
datapackage.json
73 lines (73 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"resources": [
{
"name": "ndcs",
"path": "data/ndcs.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "ISO3 code of Party, EUU for European Union"
},
{
"name": "Party",
"type": "string",
"description": "Name of Party"
},
{
"name": "Title",
"type": "string",
"description": "Document title"
},
{
"name": "FileType",
"type": "string",
"description": "Kind of document"
},
{
"name": "Language",
"type": "string",
"description": "Document language"
},
{
"name": "Version",
"type": "string",
"description": "Version of submission"
},
{
"name": "Status",
"type": "string",
"description": "Active or archived"
},
{
"name": "SubmissionDate",
"type": "date",
"description": "Date of submission"
},
{
"name": "EncodedAbsUrl",
"type": "string",
"description": "URL of original document"
},
{
"name": "OriginalFilename",
"type": "string",
"description": "Full name of original document"
}
]
}
}
],
"name": "ndcs",
"title": "Nationally Determined Contributions",
"description": "Nationally Determined Contributions (NDCs) as provided in the UNFCCC registry",
"sources": [
{
"title": "NDC Registry",
"web": "https://unfccc.int/NDCREG"
}
]
}