-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbenchmarkingEvent.json
More file actions
108 lines (108 loc) · 2.71 KB
/
benchmarkingEvent.json
File metadata and controls
108 lines (108 loc) · 2.71 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
{
"id": "https://www.elixir-europe.org/excelerate/WP2/json-schemas/0.3/BenchmarkingEvent",
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"title": "Benchmarking Event concept (ELIXIR-EXCELERATE WP2 Benchmarking schemas)",
"type": "object",
"properties": {
"_id": {
"title": "The unique id of the benchmarking event. If it is possible, it should be something meaningful, like an URL",
"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/BenchmarkingEvent" ]
},
"name": {
"title": "Short benchmarking event name",
"minLength": 1,
"type": "string"
},
"is_automated": {
"title": "Is this an automated event?",
"type": "boolean"
},
"dates": {
"title": "Relevant dates for this benchmarking event",
"type": "object",
"properties": {
"creation": {
"title": "Creation date of the benchmarking event",
"type": "string",
"format": "date-time"
},
"modification": {
"title": "Last modification date of the benchmarking event",
"type": "string",
"format": "date-time"
},
"benchmark_start": {
"title": "When starts the benchmarking event?",
"type": "string",
"format": "date-time"
},
"benchmark_stop": {
"title": "When stops the benchmarking event?",
"type": "string",
"format": "date-time"
}
},
"required": ["creation","modification"],
"dependencies": {
"benchmark_start": ["benchmark_stop"],
"benchmark_stop": ["benchmark_start"]
}
},
"url": {
"title": "The link to the benchmarking event",
"type": "string",
"format": "uri"
},
"community_id": {
"title": "The community id where this benchmarking event belongs",
"type": "string",
"foreign_keys": [
{
"schema_id": "Community",
"members": [ "." ]
}
],
"minLength": 1
},
"bench_contact_id": {
"title": "The benchmarking event contact id(s)",
"type": "array",
"minLength": 1,
"items": {
"type": "string",
"foreign_keys": [
{
"schema_id": "Contact",
"members": [ "." ]
}
],
"minLength": 1
}
},
"references": {
"title": "The benchmarking event reference id(s) (if any)",
"type": "array",
"items": {
"type": "string",
"foreign_keys": [
{
"schema_id": "Reference",
"members": [ "." ]
}
],
"minLength": 1
}
}
},
"additionalProperties": true,
"required": ["_id","_schema","name","is_automated","dates","community_id","bench_contact_id"],
"primary_key": ["_id"],
"dependencies": {}
}