-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbenchmark_scenario.json
48 lines (48 loc) · 1.22 KB
/
benchmark_scenario.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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Benchmark Scenario",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for the benchmark scenario."
},
"type": {
"type": "string",
"description": "The type of the benchmark scenario.",
"enum": [
"openeo"
]
},
"description": {
"type": "string",
"description": "A description of the benchmark scenario."
},
"backend": {
"type": "string",
"description": "The openEO backend URL to connect to."
},
"process_graph": {
"type": "object",
"description": "The openEO process graph to execute."
},
"job_options": {
"type": "object",
"description": "Batch job options to use when creating an openEO batch job."
},
"reference_data": {
"type": "object",
"description": "Reference data of the benchmark, to compare actual results with."
},
"reference_options": {
"type": "object",
"description": "Options to fine-tune how actual and reference results should be compared."
}
},
"required": [
"id",
"type",
"backend",
"process_graph"
]
}