-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopen_practices.json
More file actions
59 lines (59 loc) · 1.56 KB
/
open_practices.json
File metadata and controls
59 lines (59 loc) · 1.56 KB
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://scienceverse.org/schema/open_practices.json",
"title": "Open Practices via MetaCheck",
"description": "Open practices detection via MetaCheck. This describes individual practices -- papers may have more than one practice, described by an array of open_practices objects.",
"type": "object",
"properties": {
"paper_id": {
"description": "A unique ID for each paper",
"type": ["string"]
},
"practice": {
"description": "The practice type",
"type": ["string"],
"enum": [
"data",
"code",
"materials",
"registration",
"other"
]
}
"is_open": {
"description": "Is the practice open",
"type": ["boolean"]
},
"category": {
"description": "The category of supporting materials",
"type": "array",
"items": {
"type": ["string", "null"],
"enum": [
"field-specific repository",
"general-purpose repository",
"supplementary",
"re-use",
"website",
"upon request",
"unknown"
]
}
},
"location": {
"description": "The location of supporting materials (e.g., a URL)",
"type": ["string", "null"]
},
"text_id": {
"description": "The text IDs of any supporting statements in the full text",
"type": "array",
"items": { "type": "integer" }
}
},
"required": [
"paper_id",
"practice",
"is_open"
],
"additionalProperties": false
}