-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathassertion_evidence.json
376 lines (376 loc) · 13.1 KB
/
assertion_evidence.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
{
"$defs": {
"Activity": {
"additionalProperties": false,
"description": "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.",
"properties": {
"endedAtTime": {
"description": "The prov:endedAtTime establishes the relationship between prov:Activity and xsd:DateTime that allows one to specify the time when the activity ended.",
"format": "date-time",
"type": [
"string",
"null"
]
},
"startedAtTime": {
"description": "The prov:startedAtTime establishes the relationship between prov:Activity and xsd:DateTime that allows one to specify the time when the activity started.",
"format": "date-time",
"type": [
"string",
"null"
]
},
"was_associate_with": {
"anyOf": [
{
"$ref": "#/$defs/Agent"
},
{
"type": "null"
}
]
}
},
"title": "Activity",
"type": "object"
},
"Agent": {
"additionalProperties": false,
"description": "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity.",
"properties": {
"has_identifier": {
"anyOf": [
{
"$ref": "#/$defs/Identifier"
},
{
"type": "null"
}
]
}
},
"title": "Agent",
"type": "object"
},
"Annotation": {
"additionalProperties": false,
"description": "An annotation is a written explanatory or critical description, or other in-context information (e.g., pattern, motif, link), that has been associated with data or other types of information.",
"title": "Annotation",
"type": "object"
},
"Assertion": {
"additionalProperties": false,
"description": "A statement made by a particular agent on a particular occasion that a particular proposition is true, based on the evaluation of one or more lines of evidence.",
"properties": {
"has_annotation": {
"anyOf": [
{
"$ref": "#/$defs/Annotation"
},
{
"type": "null"
}
]
},
"has_assertion_category": {
"$ref": "#/$defs/Categories",
"description": "The brainkb:hasAssertionCategory property relates brainkb:Evidence and brainkb:Categories, specifying the classification or category that the assertion belongs to."
},
"has_assertion_description": {
"type": [
"string",
"null"
]
},
"has_assertion_summary": {
"description": "The brainkb:has_assertion_text property relates an eco:Assertion to an xsd:string, providing a textual excerpt of the assertion being made.",
"type": [
"string",
"null"
]
},
"has_evidence_line": {
"anyOf": [
{
"$ref": "#/$defs/EvidenceLine"
},
{
"type": "null"
}
],
"description": "A relationship between an assertion or proposition and an evidence line used in evaluating its validity."
},
"was_generated_by": {
"anyOf": [
{
"$ref": "#/$defs/Activity"
},
{
"type": "null"
}
]
}
},
"title": "Assertion",
"type": "object"
},
"Categories": {
"description": "",
"enum": [
"Behavioral",
"Biomarker",
"DrugTarget",
"Genetic",
"ClinicalTrial",
"Etiologic",
"Neuroimaging",
"Electrophysiological",
"Molecular",
"Pharmacological",
"Neuropsychological",
"Neurogenetic",
"Neurochemical",
"Neuroanatomical",
"Neurodevelopmental",
"Neuroinflammatory",
"Neuroplasticity",
"Neuropathological",
"Neurocomputational",
"Neuroendocrine",
"Neuropharmacogenomic",
"Neuroproteomic",
"Neurogenomic",
"Epigenetic",
"Environmental",
"Translational",
"Therapeutic",
"CognitiveNeuroscience"
],
"title": "Categories",
"type": "string"
},
"CellAnnotation": {
"additionalProperties": false,
"description": "",
"title": "CellAnnotation",
"type": "object"
},
"Document": {
"additionalProperties": false,
"description": "A collection of information content entities intended to be understood together as a whole",
"properties": {
"identifier": {
"type": [
"string",
"null"
]
},
"reference": {
"anyOf": [
{
"$ref": "#/$defs/Document"
},
{
"type": "null"
}
]
}
},
"title": "Document",
"type": "object"
},
"EvidenceDirection": {
"description": "",
"enum": [
"supporting",
"disputing",
"inconclusive"
],
"title": "EvidenceDirection",
"type": "string"
},
"EvidenceItem": {
"additionalProperties": false,
"description": "",
"properties": {
"reference": {
"anyOf": [
{
"$ref": "#/$defs/Document"
},
{
"type": "null"
}
]
}
},
"title": "EvidenceItem",
"type": "object"
},
"EvidenceLine": {
"additionalProperties": false,
"description": "An evidence line represents an independent and meaningful argument for or against a particular proposition, that is based on the interpretation of one or more pieces of information as evidence.",
"properties": {
"evidence_direction": {
"$ref": "#/$defs/EvidenceDirection",
"description": "A relation indicating whether an evidence line supports or disputes a target proposition (or represents inconclusive evidence that is not sufficient for either)."
},
"evidence_line_strength": {
"$ref": "#/$defs/EvidenceStrength",
"description": "A relation describing the degree of support provided by an evidence line for a target assertion or proposition."
},
"has_evidence_category": {
"$ref": "#/$defs/Categories"
},
"has_evidence_item": {
"anyOf": [
{
"$ref": "#/$defs/EvidenceItem"
},
{
"type": "null"
}
],
"description": "A relation holding between an evidence line and an individual information entity that contributes to the argument it represents."
},
"has_evidenceline_description": {
"type": [
"string",
"null"
]
},
"was_generated_by": {
"anyOf": [
{
"$ref": "#/$defs/Activity"
},
{
"type": "null"
}
]
}
},
"title": "EvidenceLine",
"type": "object"
},
"EvidenceStrength": {
"description": "",
"enum": [
"HighlySignificant",
"Significant",
"MarginallySignificant",
"NotSignificant",
"Unknown"
],
"title": "EvidenceStrength",
"type": "string"
},
"Group": {
"additionalProperties": false,
"description": "",
"properties": {
"has_identifier": {
"anyOf": [
{
"$ref": "#/$defs/Identifier"
},
{
"type": "null"
}
]
}
},
"title": "Group",
"type": "object"
},
"Identifier": {
"additionalProperties": false,
"description": "",
"title": "Identifier",
"type": "object"
},
"OrcidIdentifier": {
"additionalProperties": false,
"description": "",
"title": "OrcidIdentifier",
"type": "object"
},
"Organization": {
"additionalProperties": false,
"description": "",
"properties": {
"has_identifier": {
"anyOf": [
{
"$ref": "#/$defs/Identifier"
},
{
"type": "null"
}
]
}
},
"title": "Organization",
"type": "object"
},
"Person": {
"additionalProperties": false,
"description": "",
"properties": {
"has_identifier": {
"anyOf": [
{
"$ref": "#/$defs/Identifier"
},
{
"type": "null"
}
]
},
"member": {
"anyOf": [
{
"$ref": "#/$defs/Organization"
},
{
"type": "null"
}
]
}
},
"title": "Person",
"type": "object"
},
"PersonIdentifier": {
"additionalProperties": false,
"description": "",
"title": "PersonIdentifier",
"type": "object"
},
"SoftwareAgent": {
"additionalProperties": false,
"description": "",
"properties": {
"has_identifier": {
"anyOf": [
{
"$ref": "#/$defs/Identifier"
},
{
"type": "null"
}
]
}
},
"title": "SoftwareAgent",
"type": "object"
}
},
"$id": "https://identifiers.org/brain-bican/assertion-evidence-schema",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"additionalProperties": true,
"metamodel_version": "1.7.0",
"title": "assertion-evidence-schema",
"type": "object",
"version": null
}