-
Notifications
You must be signed in to change notification settings - Fork 2
/
datapackage.json
142 lines (142 loc) · 4.23 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"profile": "fiscal-data-package",
"keywords": [
"ocds"
],
"name": "ocds-fdp-coordination-example",
"title": "Open Contracting Data Standard and Open Fiscal Data Package integration example",
"description": "An example dataset created to illustrate connections between the Open Contracting Data Standard and the Open Fiscal Data Package.",
"homepage": "https://github.com/open-contracting-extensions/ocds_budget_breakdown_extension",
"version": "0.1",
"contributors": [
{
"title": "OCDS Helpdesk",
"role": "author"
}
],
"licenses": [
{
"name": "CC0-1.0",
"title": "CC0 1.0",
"path": "https://creativecommons.org/publicdomain/zero/1.0/"
}
],
"columnTypes": [
"https://frictionlessdata.io/taxonomies/fiscal/budgets.json"
],
"resources": [
{
"name": "budget-and-spend",
"path": "budget-and-spend.csv",
"profile": "tabular-data-resource",
"schema": {
"fields": [
{
"name": "Year",
"type": "date",
"format": "default",
"title": "Year",
"description": "Financial year",
"columnType": "date:fiscal-year"
},
{
"name": "Dept",
"type": "string",
"format": "default",
"title": "Department Code",
"columnType": "administrative-classification:generic:level1:code"
},
{
"name": "DeptName",
"type": "string",
"format": "default",
"title": "Department Name",
"columnType": "administrative-classification:generic:level1:label",
"labelOf": "administrative-classification:generic:level1:code"
},
{
"name": "Team",
"type": "string",
"format": "default",
"title": "Team Code",
"columnType": "administrative-classification:generic:level2:code"
},
{
"name": "TeamName",
"type": "string",
"format": "default",
"title": "Team Name",
"columnType": "administrative-classification:generic:level2:label",
"labelOf": "administrative-classification:generic:level2:code"
},
{
"name": "Economic",
"type": "string",
"format": "default",
"title": "Economic Classification",
"columnType": "economic-classification:generic:code"
},
{
"name": "Func",
"type": "string",
"format": "default",
"title": "Functional Classification",
"columnType": "functional-classification:generic:level1:code"
},
{
"name": "FuncDesc",
"type": "string",
"format": "default",
"title": "Functional Classification (Description)",
"columnType": "functional-classification:generic:level1:label",
"labelOf": "functional-classification:generic:level1:code"
},
{
"name": "Committed",
"type": "number",
"format": "default",
"title": "Allocated budget",
"normalize": {
"Phase": "Committed"
},
"columnType": "value-kind:code"
},
{
"name": "Modified",
"type": "number",
"format": "default",
"title": "Modified budget",
"normalize": {
"Phase": "Modified"
},
"columnType": "value-kind:code"
},
{
"name": "Paid",
"type": "number",
"format": "default",
"title": "Amount paid",
"normalize": {
"Phase": "Paid"
},
"columnType": "value-kind:code"
}
],
"extraFields": [
{
"name": "Fiscal amount",
"type": "number",
"columnType": "value",
"normalizationTarget": true
},
{
"name": "Currency",
"type": "string",
"columnType": "value-currency:code",
"constant": "GBP"
}
]
}
}
]
}