This repository has been archived by the owner on Jan 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatapackage.json
62 lines (62 loc) · 1.62 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
{
"name": "interventions",
"title": "Intervention databases for OpenTrials",
"homepage": "http://opentrials.net/",
"version": "0.1.0",
"license": "PDDL-1.0",
"resources": [
{
"name": "interventions",
"path": "data/interventions.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "slug",
"type": "string",
"description": "Short URL-compatible identifier"
},
{
"name": "name",
"type": "string",
"description": "Name of register"
},
{
"name": "url",
"type": "string",
"description": "Main URL for general information"
},
{
"name": "license_url",
"type": "string",
"description": "License URL (if it exists)"
},
{
"name": "download_url",
"type": "string",
"description": "Download URL (if it exists)"
},
{
"name": "data_access_type",
"type": "string",
"enum": ["scrape", "download", "api"],
"description": "Method of downloading information"
},
{
"name": "description",
"type": "string",
"description": "Description"
},
{
"name": "notes",
"type": "string",
"description": "Notes"
}
]
}
}
],
"description": "Interventions",
"repository": "https://github.com/opentrials/interventions.git"
}