forked from centraldedados/parlamento-deputados
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
93 lines (92 loc) · 2.34 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
{
"name": "parlamento-deputados",
"title": "Deputados do Parlamento",
"homepage": "https://github.com/centraldedados/parlamento-deputados/",
"version": "0.9.0",
"license": "ODbL",
"description": "Lista de Deputados da Assembleia da República",
"repository": "git://github.com/centraldedados/parlamento-deputados.git",
"resources": [
{
"name": "deputados",
"path": "data/deputados.csv",
"format": "csv",
"mediatype": "text/csv",
"bytes": 739743,
"schema": {
"fields": [
{
"name": "id",
"type": "integer",
"description": "ID numérico no parlamento.pt"
},
{
"name": "shortname",
"type": "string",
"description": "Nome abreviado"
},
{
"name": "name",
"type": "string",
"description": "Nome completo"
},
{
"name": "party",
"type": "string",
"description": "Partido"
},
{
"name": "education",
"type": "string",
"description": "Formação"
},
{
"name": "birthdate",
"type": "date",
"description": "Data de nascimento"
},
{
"name": "occupation",
"type": "string",
"description": "Profissão"
},
{
"name": "current_jobs",
"type": "string",
"description": "Cargos atuais"
},
{
"name": "jobs",
"type": "string",
"description": "Cargos anteriores"
},
{
"name": "commissions",
"type": "string",
"description": "Comissões parlamentares"
},
{
"name": "mandates",
"type": "string",
"description": "Mandatos"
},
{
"name": "awards",
"type": "string",
"description": "Condecorações"
},
{
"name": "url",
"type": "string",
"description": "URL do parlamento.pt"
},
{
"name": "image_url",
"type": "string",
"description": "URL da foto"
}
]
}
}
]
}