-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoddpub.json
More file actions
83 lines (79 loc) · 2.5 KB
/
Copy pathoddpub.json
File metadata and controls
83 lines (79 loc) · 2.5 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://scienceverse.org/schema/oddpub.json",
"title": "Open Practices via ODDPub",
"description": "Open data and code detection via ODDPub (https://github.com/quest-bih/oddpub). This describes individual papers -- papers may have more than one open data or code source, which are described together here with arrays for open_data_category and by combining sentences for das/cas/open_data_statements/open_code_statements.",
"type": "object",
"properties": {
"article": {
"description": "A reference to the paper being processed",
"type": ["string"]
},
"is_open_data": {
"description": "Is open data detected",
"type": ["boolean"]
},
"open_data_category": {
"description": "What type of data are available",
"type": "array",
"items": {
"type": "string",
"enum": [
"field-specific repository",
"general-purpose repository",
"dataset",
"supplemental table or data",
"supplementary raw/full data with specific file format",
"dataset on Github",
"upon request",
"re-use",
"unknown/misspecified source"
]
}
},
"is_reuse": {
"description": "Is data reused from another source",
"type": ["boolean"]
},
"is_open_code": {
"description": "Is open code detected",
"type": ["boolean"]
},
"is_code_supplement": {
"description": "Is there code in supplemental materials",
"type": ["boolean"]
},
"is_code_reuse": {
"description": "Is code reused from another source",
"type": ["boolean"]
},
"is_open_data_das": {
"description": "Is there a data availability statement indicating open data",
"type": ["boolean"]
},
"is_open_code_cas": {
"description": "Is there a code availability statement indicating open code",
"type": ["boolean"]
},
"das": {
"description": "The data availability statement",
"type": ["string"]
},
"open_data_statements": {
"description": "Any statements about open data in the full tet",
"type": ["string"]
},
"cas": {
"description": "The code availability statement",
"type": ["string"]
},
"open_code_statements": {
"description": "Any statements about open code in the full text",
"type": ["string"]
}
},
"required": [
"article"
],
"additionalProperties": false
}