-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdatapackage.json
247 lines (247 loc) · 8.15 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
{
"profile": "tabular-data-package",
"resources": [
{
"path": "brazilian-transparency-and-open-data-portals.csv",
"profile": "tabular-data-resource",
"name": "brazilian-transparency-and-open-data-portals",
"format": "csv",
"mediatype": "text/csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "state_code",
"type": "string",
"format": "default",
"title": "State code",
"description": "Brazilian state abbreviation",
"constraints": {
"required": false,
"minLength": 2,
"maxLength": 2
}
},
{
"name": "municipality_code",
"type": "integer",
"format": "default",
"title": "Municipality code",
"description": "Municipality code, according to IBGE",
"constraints": {
"required": false,
"minimum": 1,
"maximum": 9999999
}
},
{
"name": "municipality",
"type": "string",
"format": "default",
"title": "Municipality",
"description": "Municipality name",
"constraints": {
"required": false,
"minLength": 1
}
},
{
"name": "sphere",
"type": "string",
"format": "default",
"title": "Sphere",
"description": "Federative sphere of the Brazilian public entity. Can be one of these: federal, state, municipality.",
"constraints": {
"required": true,
"enum": ["federal", "state", "municipal"]
}
},
{
"name": "branch",
"type": "string",
"format": "default",
"title": "branch",
"description": "Branch of Brazilian administration the entity is situated at. Can be one of these: executive, legislative, judiciary, mp.",
"constraints": {
"required": true,
"enum": ["executive", "legislative", "judiciary"]
}
},
{
"name": "url",
"type": "string",
"format": "uri",
"title": "URL",
"description": "Portal's URL"
},
{
"name": "type",
"type": "string",
"format": "default",
"title": "type of portal",
"description": "Type of portal (according to KLEIN, 2017).\n\nSPT: Transparency portal only\nPTDAG: Transparency and open data portal\nPEDAG: Open data portal",
"constraints": {
"required": true,
"enum": ["SPT", "PTDAG", "PEDAG"]
}
},
{
"name": "notes",
"type": "string",
"format": "default",
"title": "notes",
"description": "Notes on the surveying of information, e.g., what is the scope of the portal, type categorization, etc."
},
{
"name": "last-verified-auto",
"type": "datetime",
"format": "default",
"title": "Last verified (auto)",
"description": "Last time the site was automatically verified to be in working order"
},
{
"name": "last-verified-manual",
"type": "datetime",
"format": "default",
"title": "Last verified (manual)",
"description": "Last time the site was manually verified to be in working order"
}
],
"primaryKey": ["state_code", "municipality_code", "sphere", "branch"],
"missingValues": [
""
]
},
"title": "Brazilian Transparency and Open Data Portals",
"description": "A listing of known transparency and open data portals of Brazilian public administration top level entities (e.g. states, municipalities, etc.)."
},
{
"name": "brazilian-municipality-and-state-websites",
"path": "brazilian-municipality-and-state-websites.csv",
"profile": "tabular-data-resource",
"format": "csv",
"mediatype": "text/csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "state_code",
"type": "string",
"format": "default",
"title": "State code",
"description": "Brazilian state abbreviation",
"constraints": {
"required": false,
"minLength": 2,
"maxLength": 2
}
},
{
"name": "municipality_code",
"type": "integer",
"format": "default",
"title": "Municipality code",
"description": "Municipality code, according to IBGE",
"constraints": {
"required": false,
"minimum": 1,
"maximum": 9999999
}
},
{
"name": "municipality",
"type": "string",
"format": "default",
"title": "Municipality",
"description": "Municipality name",
"constraints": {
"required": false,
"minLength": 1
}
},
{
"name": "sphere",
"type": "string",
"format": "default",
"title": "Sphere",
"description": "Federative sphere of the Brazilian public entity. Can be one of these: federal, state, municipality.",
"constraints": {
"required": true,
"enum": ["federal", "state", "municipal"]
}
},
{
"name": "branch",
"type": "string",
"format": "default",
"title": "branch",
"description": "Branch of Brazilian administration the entity is situated at. Can be one of these: executive, legislative, judiciary, mp.",
"constraints": {
"required": true,
"enum": ["executive", "legislative", "judiciary"]
}
},
{
"name": "url",
"type": "string",
"format": "uri",
"title": "URL",
"description": "Website's URL"
},
{
"name": "notes",
"type": "string",
"format": "default",
"title": "notes",
"description": "Notes on the surveying of information, e.g., what is the scope of the portal, type categorization, etc."
},
{
"name": "last-verified-auto",
"type": "datetime",
"format": "default",
"title": "Last verified (auto)",
"description": "Last time the site was automatically verified to be in working order"
},
{
"name": "last-verified-manual",
"type": "datetime",
"format": "default",
"title": "Last verified (manual)",
"description": "Last time the site was manually verified to be in working order"
}
],
"primaryKey": ["state_code", "municipality_code", "sphere", "branch", "notes"],
"missingValues": [
""
]
},
"title": "Brazilian Municipality and State Websites",
"description": "A listing of known websites of Brazilian public administration top level local entities (e.g. states, municipalities, etc.)."
}
],
"keywords": [
"transparency",
"open data",
"brazil",
"brazilian states",
"brazilian municipalities"
],
"name": "brazilian-transparency-and-open-data-portals",
"title": "Brazilian Transparency and Open Data Portals",
"description": "Known Transparency and Open Data Portals of Brazilian public entities.",
"homepage": "https://github.com/augusto-herrmann/transparencia-dados-abertos-brasil",
"version": "0.0.1",
"contributors": [
{
"title": "Augusto Herrmann",
"role": "author"
}
],
"licenses": [
{
"name": "CC0-1.0",
"title": "CC0 1.0",
"path": "https://creativecommons.org/publicdomain/zero/1.0/"
}
]
}