-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
38 lines (38 loc) · 1.1 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
{
"name": "learning_dataset",
"title": "Project Drawdown",
"version": "0.1",
"author": "Sneha Sharma",
"resources": [
{
"name": "learning_dayaset",
"path": "data/result.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "solutions",
"description": "Solutions",
"type": "string"
},
{
"name": "sector",
"description": "Sector",
"type": "string"
},
{
"name": "Scenario 1",
"description": "Scenario 1",
"type": "number"
},
{
"name": "Scenario 2",
"description": "Scenario 2",
"type": "number"
}
]
}
}
]
}