forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
if.json
78 lines (78 loc) · 2.24 KB
/
if.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
{
"id": "if",
"summary": "If-Then-Else conditional",
"description": "Returns the value of the `accept` parameter if the expression is `true` or the value of the `reject` parameter if the expression is `false`. This works similar to an if-then-else construct.\n\nThe no-data value `null` is passed through and therefore gets propagated.",
"categories": [
"logic",
"comparison",
"masks"
],
"parameter_order": ["expression", "accept", "reject"],
"parameters": {
"expression": {
"description": "A boolean value.",
"schema": {
"type": [
"boolean",
"null"
]
},
"required": true
},
"accept": {
"description": "A value that is returned if the boolean expression is `true`. Defaults to `true`.",
"schema": {
"description": "Any data type is allowed.",
"default": true
}
},
"reject": {
"description": "A value that is returned if the boolean expression is `false`. Defaults to `false`.",
"schema": {
"description": "Any data type is allowed.",
"default": false
}
}
},
"returns": {
"description": "Either the `accept` or `reject` argument depending on the given boolean expression.",
"schema": {
"description": "Any data type is allowed."
}
},
"examples": [
{
"arguments": {
"expression": true
},
"returns": true
},
{
"arguments": {
"expression": null
},
"returns": null
},
{
"arguments": {
"expression": false
},
"returns": false
},
{
"arguments": {
"expression": true,
"accept": "A"
},
"returns": "A"
},
{
"arguments": {
"expression": false,
"accept": [1,2,3],
"reject": [4,5,6]
},
"returns": [4,5,6]
}
]
}