-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtestEvent.json
More file actions
115 lines (115 loc) · 2.77 KB
/
testEvent.json
File metadata and controls
115 lines (115 loc) · 2.77 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
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
{
"id": "https://www.elixir-europe.org/excelerate/WP2/json-schemas/0.3/TestEvent",
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"title": "Test Event concept (ELIXIR-EXCELERATE WP2 Benchmarking schemas)",
"type": "object",
"properties": {
"_id": {
"title": "The unique id of the test event.",
"type": "string",
"minLength": 1
},
"_schema": {
"title": "The JSON schema absolute URI. It must match the value of 'id' in the JSON schema",
"type": "string",
"format": "uri",
"enum": [ "https://www.elixir-europe.org/excelerate/WP2/json-schemas/0.3/TestEvent" ]
},
"tool_id": {
"title": "The tool id which takes this input dataset",
"type": "string",
"foreign_keys": [
{
"schema_id": "Tool",
"members": [ "." ]
}
],
"minLength": 1
},
"input_dataset_id": {
"title": "The id of the input dataset",
"type": "string",
"foreign_keys": [
{
"schema_id": "Dataset",
"members": [ "." ]
}
],
"minLength": 1
},
"output_dataset_id": {
"title": "The id of the output dataset (if available)",
"type": "string",
"foreign_keys": [
{
"schema_id": "Dataset",
"members": [ "." ]
}
],
"minLength": 1
},
"benchmarking_event_id": {
"title": "The id of the benchmarking event where this test event was generated",
"type": "string",
"foreign_keys": [
{
"schema_id": "BenchmarkingEvent",
"members": [ "." ]
}
],
"minLength": 1
},
"result_report": {
"title": "Relevant information about the status changes",
"type": "array",
"items": {
"type": "object",
"properties": {
"status": {
"title": "Status retval",
"type": "integer"
},
"status_date": {
"title": "Date of the status reception",
"type": "string",
"format": "date-time"
},
"report": {
"title": "Textual report for this status",
"type": "string"
}
}
}
},
"dates": {
"title": "Relevant dates for this test event",
"type": "object",
"properties": {
"creation": {
"title": "Creation date of the test event",
"type": "string",
"format": "date-time"
},
"modification": {
"title": "Last modification date of the test event",
"type": "string",
"format": "date-time"
},
"reception": {
"title": "Last reception date of the output dataset (redundant, as the output dataset already has this date)",
"type": "string",
"format": "date-time"
}
},
"required": ["creation"]
},
"metadata": {
"title": "Relevant metadata used to call the tool",
"type": "object"
}
},
"additionalProperties": true,
"required": ["_id","_schema","tool_id","input_dataset_id","benchmarking_event_id","dates"],
"primary_key": ["_id"],
"dependencies": {}
}