forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 4
/
and.json
93 lines (93 loc) · 2.32 KB
/
and.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"id": "and",
"summary": "Logical AND",
"description": "Checks if **both** values are true.\n\nEvaluates parameter `x` before `y` and stops once the outcome is unambiguous. If any argument is `null`, the result will be `null` if the outcome is ambiguous.\n\n**Truth table:**\n\n```\na \\ b || null | false | true\n----- || ----- | ----- | -----\nnull || null | false | null\nfalse || false | false | false\ntrue || null | false | true\n```",
"categories": [
"logic"
],
"parameters": [
{
"name": "x",
"description": "A boolean value.",
"schema": {
"type": [
"boolean",
"null"
]
}
},
{
"name": "y",
"description": "A boolean value.",
"schema": {
"type": [
"boolean",
"null"
]
}
}
],
"returns": {
"description": "Boolean result of the logical AND.",
"schema": {
"type": [
"boolean",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": true,
"y": true
},
"returns": true
},
{
"arguments": {
"x": true,
"y": false
},
"returns": false
},
{
"arguments": {
"x": false,
"y": false
},
"returns": false
},
{
"arguments": {
"x": false,
"y": null
},
"returns": false
},
{
"arguments": {
"x": true,
"y": null
},
"returns": null
}
],
"process_graph": {
"all": {
"process_id": "all",
"arguments": {
"data": [
{
"from_parameter": "x"
},
{
"from_parameter": "y"
}
],
"ignore_nodata": false
},
"result": true
}
}
}