-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
71 lines (70 loc) · 2.29 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
{
"profile": "tabular-data-package",
"resources": [
{
"path": "data/data_normalized.csv",
"profile": "tabular-data-resource",
"name": "data_normalized",
"format": "csv",
"mediatype": "text/csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "Region/City",
"type": "string",
"format": "default"
},
{
"name": "Number of Students",
"type": "number",
"format": "default"
},
{
"name": "Internal Expenditures on R&D",
"type": "number",
"format": "default"
},
{
"name": "External Expenditures on R&D",
"type": "number",
"format": "default"
},
{
"name": "Current Revenues",
"type": "number",
"format": "default"
},
{
"name": "Current Expenditures",
"type": "number",
"format": "default"
},
{
"name": "Institutions",
"type": "number",
"format": "default"
},
{
"name": "Teachers",
"type": "number",
"format": "default"
},
{
"name": "Student Seat Availability",
"type": "number",
"format": "default"
},
{
"name": "Innovation Activity Level, %",
"type": "string",
"format": "default"
}
],
"missingValues": [
""
]
}
}
]
}