-
Notifications
You must be signed in to change notification settings - Fork 1
/
datapackage.json
122 lines (122 loc) · 2.97 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
{
"profile": "tabular-data-package",
"resources": [
{
"name": "estados",
"path": "data/estados.csv",
"profile": "tabular-data-resource",
"schema": {
"fields": [
{
"name": "COD",
"type": "integer",
"format": "default"
},
{
"name": "NOME",
"type": "string",
"format": "default"
},
{
"name": "SIGLA",
"type": "string",
"format": "default"
}
],
"primaryKey": "COD"
},
"title": "Estados brasileiros",
"format": "csv",
"encoding": "utf-8",
"description": "Contém as seguintes informações para os estados brasileiros\n\n- Código\n- Nome\n- Sigla\n",
"scheme": "file",
"hashing": "md5",
"stats": {
"hash": "99167485b6ca41cfa6a97dc8bdf39fa1",
"bytes": 496,
"fields": 3,
"rows": 27
}
},
{
"name": "pib-per-capita",
"path": "data/pib-per-capita.csv",
"profile": "tabular-data-resource",
"schema": {
"fields": [
{
"name": "COD",
"type": "integer"
},
{
"name": "POP_2013",
"type": "number",
"groupChar": ".",
"decimalChar": ","
},
{
"name": "PIB_2013",
"type": "number",
"groupChar": ".",
"decimalChar": ","
},
{
"name": "PIB_PER_CAPITA_2013",
"type": "number",
"groupChar": ".",
"decimalChar": ","
}
],
"primaryKey": "COD",
"foreignKeys": [
{
"fields": "COD",
"reference": {
"resource": "estados",
"fields": "COD"
}
}
]
},
"title": "PIB per capita",
"format": "csv",
"encoding": "utf-8-sig",
"scheme": "file",
"hashing": "md5",
"dialect": {
"delimiter": ";",
"skipInitialSpace": true
}
}
],
"keywords": [
"estados",
"brasil",
"federação"
],
"licenses": [
{
"name": "CC0-1.0",
"title": "CC0 1.0",
"path": "https://creativecommons.org/publicdomain/zero/1.0/"
}
],
"version": "0.0.0.9000",
"contributors": [
{
"title": "Francisco Alves",
"role": "author"
}
],
"name": "frictionless-hangout-jan2022",
"owner_org": "controladoria-geral-do-estado-cge",
"title": "Frictionless Data community hangout - Jan/2022",
"description": "Demo repo for the Frictionless Data community hangout about the Data package manager for CKAN (dpckan)",
"ckan_hosts": {
"https://homologa.cge.mg.gov.br/": {
"estados": "d9cffbf1-d2a0-4f2c-8702-9606230ef319",
"pib-per-capita": "a3bafd5d-46bf-49ba-9f33-d0c8a65548a4",
"datapackage.json": "672f1f46-ff56-412e-960a-e4a0423523a5"
}
}
}