-
Notifications
You must be signed in to change notification settings - Fork 2
/
minimal_bdm_oeb_level2.yaml
584 lines (581 loc) · 17.7 KB
/
minimal_bdm_oeb_level2.yaml
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
$id: https://github.com/inab/benchmarking/minimal-json-schemas
$schema: 'https://json-schema.org/draft/2019-09/schema'
title: Minimal dataset concept (ELIXIR-EXCELERATE WP2 Benchmarking schemas)
if:
type: array
then:
$ref: '#/$defs/ArrayOfEntries'
else:
properties:
_id:
title: The unique community-set id of the dataset
type: string
id:
title: The unique community-set id of the challenge
type: string
type:
type: string
enum:
- participant
- assessment
- aggregation
if:
required:
- _id
then:
if:
properties:
type:
const: participant
then:
$ref: '#/$defs/ParticipantEntry'
else:
$ref: '#/$defs/AssAggEntry'
else:
$ref: '#/$defs/ChallengeParticipants'
$defs:
ArrayOfEntries:
type: array
minItems: 1
items:
- $ref: '#/$defs/ParticipantEntry'
additionalItems:
properties:
_id:
title: The unique community-set id of the dataset
type: string
id:
title: The unique community-set id of the challenge
type: string
unevaluatedProperties: false
if:
required:
- _id
then:
if:
properties:
type:
const: participant
then:
$ref: '#/$defs/ParticipantEntry'
else:
$ref: '#/$defs/AssAggEntry'
else:
$ref: '#/$defs/ChallengeParticipants'
ChallengeParticipants:
type: object
properties:
id:
title: The challenge acronym
type: string
minLength: 1
participants:
title: The list of participants
type: array
items:
type: string
minLength: 1
uniqueItems: true
minItems: 1
additionalProperties: false
required:
- id
- participants
primary_key:
name: challenges_key
members:
- id
AssAggEntry:
properties:
type:
title: Type of dataset, either assessment or aggregation
type: string
enum:
- assessment
- aggregation
required:
- type
if:
properties:
type:
const: assessment
then:
$ref: '#/$defs/AssessmentEntry'
else:
$ref: '#/$defs/AggregationEntry'
AssessmentEntry:
type: object
properties:
_id:
title: The unique community-set id of the dataset
type: string
challenge_id:
title: The challenge(s) where this dataset was generated or used
type: string
minLength: 1
# This foreign key is disabled because some QfO metrics workflows
# are producing spureous results
# foreign_keys:
# - members:
# - .
# schema_id: https://github.com/inab/benchmarking/minimal-json-schemas
# refers_to: challenges_key
community_id:
title: The community where this dataset was generated or used
type: string
description: The name or OEB official id for the community which used or generated
the dataset
minLength: 1
# foreign_keys:
# - members:
# - .
# schema_id: https://www.elixir-europe.org/excelerate/WP2/json-schemas/1.0/Community
metrics:
title: The computed metrics stored as inline data
type: object
properties:
metric_id:
title: the OEB official id / name of the metric
type: string
minLength: 1
# foreign_keys:
# - members:
# - .
# schema_id: https://www.elixir-europe.org/excelerate/WP2/json-schemas/1.0/Metrics
oneOf:
- properties:
values:
title: the numerical value of the metric
type: array
minItems: 1
oneOf:
- items:
type: object
properties:
e:
title: the standard error / deviation for the metric (if exists)
type: number
minLength: 1
v:
title: the numerical value of the metric
type: number
minLength: 1
unevaluatedProperties: false
required:
- v
- items:
type: number
required:
- values
- properties:
stderr:
title: the standard error / deviation for the metric (if exists)
type: number
minLength: 1
value:
title: the numerical value of the metric
type: number
minLength: 1
required:
- value
unevaluatedProperties: false
required:
- metric_id
participant_id:
title: The id / name of the tool which generated this dataset
type: string
minLength: 1
join_keys:
- members:
- .
schema_id: https://github.com/inab/benchmarking/minimal-json-schemas
refers_to: participant_id_index
type:
title: Type of dataset.
type: string
const: assessment
unevaluatedProperties: false
required:
- _id
- community_id
- challenge_id
- type
- participant_id
primary_key:
- _id
unique:
- challenge_id
- community_id
- participant_id
- "metrics.metric_id"
ParticipantEntry:
type: object
properties:
_id:
title: The unique community-set id of the dataset
type: string
challenge_id:
title: The challenge(s) where this dataset was generated or used
oneOf:
- type: array
items:
type: string
minLength: 1
foreign_keys:
- members:
- .
schema_id: https://github.com/inab/benchmarking/minimal-json-schemas
refers_to: challenges_key
minItems: 1
- type: string
minLength: 1
foreign_keys:
- members:
- .
schema_id: https://github.com/inab/benchmarking/minimal-json-schemas
refers_to: challenges_key
community_id:
title: The community where this dataset was generated or used
type: string
description: The name or OEB official id for the community which used or generated
the dataset
minLength: 1
# foreign_keys:
# - members:
# - .
# schema_id: https://www.elixir-europe.org/excelerate/WP2/json-schemas/1.0/Community
datalink:
title: The data itself
type: object
properties:
attrs:
title: 'Attributes describing the datalink: whether it is inline (i.e.
a data URI); a CURIE; whether it is compressed, or an archive (tar,
zip, rar), a metalink (RFC 5854, RFC 6249, https://en.wikipedia.org/wiki/Metalink)
or a standard sums (MD5, SHA1) file'
type: array
anyOf:
- items:
enum:
- inline
- compressed
- archive
- metalink
- sums
type: string
- items:
enum:
- curie
- compressed
- archive
- metalink
type: string
minItems: 1
uniqueItems: true
status:
title: Last validation status (unreachable content, missing content(404),
interrupted while validating, corrupted (checksums, not all the contents
available, etc...), ok)
type: string
enum:
- unreachable
- missing
- interrupted
- corrupted
- ok
validation_date:
title: Last validation date of the datalink
type: string
format: date-time
uri:
title: Where the dataset is available
type: string
format: uri
additionalProperties: false
required:
- validation_date
- status
participant_id:
title: The id / name of the tool which generated this dataset
type: string
minLength: 1
index:
name: participant_id_index
members:
- .
# foreign_keys:
# - members:
# - .
# schema_id: https://www.elixir-europe.org/excelerate/WP2/json-schemas/1.0/Tool
type:
title: Type of dataset.
type: string
const: participant
additionalProperties: false
required:
- _id
- community_id
- challenge_id
- type
- datalink
- participant_id
primary_key:
- _id
AggregationEntry:
type: object
properties:
_id:
title: The unique community-set id of the dataset
type: string
minLength: 1
challenge_ids:
title: The challenge(s) where this dataset was generated or used
type: array
items:
type: string
minLength: 1
foreign_keys:
- members:
- .
schema_id: https://github.com/inab/benchmarking/minimal-json-schemas
refers_to: challenges_key
minItems: 1
community_id:
title: The community where this dataset was generated or used
type: string
description: The name or OEB official id for the community which used or generated
the dataset
minLength: 1
# foreign_keys:
# - members:
# - .
# schema_id: https://www.elixir-europe.org/excelerate/WP2/json-schemas/1.0/Community
aggregation_metric_id:
title: The OEB official id or label of the aggregation metrics to be associated to this aggregation dataset
type: string
minLength: 1
description: >-
The label of one of the metrics registered under the challenge declaration.
This is needed to disambiguate the metrics to associate to the aggregation
dataset when the challenge defines more than one.
datalink:
title: The aggregation data itself
type: object
properties:
inline_data:
title: The aggregation data is provided inline
oneOf:
- type: object
properties:
challenge_participants:
description: The metrics for each one of the participants
type: array
items:
type: object
properties:
participant_id:
type: string
minLength: 1
metric_x:
type: number
metric_y:
type: number
stderr_x:
type: number
stderr_y:
type: number
required:
- participant_id
- metric_x
- metric_y
unevaluatedProperties: false
unique:
- participant_id
visualization:
type: object
properties:
type:
type: string
const: "2D-plot"
x_axis:
title: "x-axis metric label"
type: string
minLength: 1
y_axis:
title: "y-axis metric label"
type: string
minLength: 1
optimization:
title: "Chart representation optimization"
type: string
enum:
- "top-left"
- "top-right"
- "bottom-left"
- "bottom-right"
default: "top-right"
required:
- type
- x_axis
- y_axis
unevaluatedProperties: false
required:
- challenge_participants
- visualization
unevaluatedProperties: false
- type: object
properties:
challenge_participants:
description: The metrics for each one of the participants
type: array
items:
type: object
properties:
participant_id:
type: string
minLength: 1
metric_value:
type: number
required:
- participant_id
- metric_value
visualization:
type: object
properties:
type:
type: string
const: "bar-plot"
metric:
type: string
minLength: 1
optimization:
title: "Chart representation optimization"
type: string
enum:
- "left"
- "right"
- "minimize"
- "maximize"
default: "maximize"
required:
- type
- metric
unevaluatedProperties: false
required:
- challenge_participants
- visualization
- type: object
properties:
series_type:
type: string
const: aggregation-data-series
challenge_participants:
description: The metrics data series for each one of the participants
type: array
items:
type: object
properties:
label:
type: string
minLength: 1
metric_id:
type: string
minLength: 1
values:
type: array
minItems: 1
oneOf:
- items:
type: object
properties:
v:
type: number
e:
type: number
unevaluatedProperties: false
required:
- v
- items:
type: number
join_keys:
- members:
- metric_id
schema_id: https://github.com/inab/benchmarking/minimal-json-schemas
refers_to: available_metrics_index
required:
- label
- metric_id
- values
unevaluatedProperties: false
visualization:
type: object
properties:
type:
type: string
const: "box-plot"
available_metrics:
type: array
items:
type: string
minLength: 1
uniqueItems: true
minItems: 1
optimization:
title: Chart representation optimization (valid for bar-plot and 2D-plot)
type: string
enum:
- left
- right
- minimize
- maximize
- top-left
- top-right
- bottom-left
- bottom-right
required:
- type
- available_metrics
unevaluatedProperties: false
labels:
title: Mapping labels to dataset assessment original ids. It can be an incomplete list.
type: array
items:
type: object
properties:
label:
title: Label representing the participant
type: string
minLength: 1
dataset_orig_id:
title: Participant dataset original id
type: string
minLength: 1
required:
- label
- dataset_orig_id
unevaluatedProperties: false
minItems: 1
index:
name: available_metrics_index
members:
- visualization.available_metrics
limit_scope: true
required:
- series_type
- challenge_participants
- visualization
unevaluatedProperties: false
type:
title: Type of dataset.
type: string
const: aggregation
unevaluatedProperties: false
required:
- _id
- challenge_ids
- type
- datalink
unique:
- _id
- datalink.inline_data.visualization.x_axis
- datalink.inline_data.visualization.y_axis