-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathdatapackage.json
More file actions
30 lines (30 loc) · 837 Bytes
/
datapackage.json
File metadata and controls
30 lines (30 loc) · 837 Bytes
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
/* see http://dataprotocols.org/data-packages/ for full specification of this format */
{
"title": "Data package for study NAME OF STUDY",
"name": "name-of-study",
"license": "CC0-1.0",
"contributors": [
{
"name": "Firstname Lastname",
"email": "youremail@example.com"
}
],
"resources": [
{
"path": "data/raw/rawDataFile1.csv",
"name": "Name of data file 1",
"format": "csv"
}
{
"path": "data/clean/cleanDataFile1.csv",
"name": "Clean version of Name of data file 1",
"format": "csv",
"sources": [
{
"path": "data/raw/rawDataFile1.csv"
}
],
}
],
"datapackage_version": "1.0-beta.10"
}