-
Notifications
You must be signed in to change notification settings - Fork 17
/
if.json
96 lines (96 loc) · 2.46 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"id": "if",
"summary": "If-Then-Else conditional",
"description": "If the value passed is `true`, returns the value of the `accept` parameter, otherwise returns the value of the `reject` parameter.\n\nThis is basically an if-then-else construct as in other programming languages.",
"categories": [
"logic",
"comparison",
"masks"
],
"parameters": [
{
"name": "value",
"description": "A boolean value.",
"schema": {
"type": [
"boolean",
"null"
]
}
},
{
"name": "accept",
"description": "A value that is returned if the boolean value is `true`.",
"schema": {
"description": "Any data type is allowed."
}
},
{
"name": "reject",
"description": "A value that is returned if the boolean value is **not** `true`. Defaults to `null`.",
"schema": {
"description": "Any data type is allowed."
},
"default": null,
"optional": true
}
],
"returns": {
"description": "Either the `accept` or `reject` argument depending on the given boolean value.",
"schema": {
"description": "Any data type is allowed."
}
},
"examples": [
{
"arguments": {
"value": true,
"accept": "A",
"reject": "B"
},
"returns": "A"
},
{
"arguments": {
"value": null,
"accept": "A",
"reject": "B"
},
"returns": "B"
},
{
"arguments": {
"value": false,
"accept": [
1,
2,
3
],
"reject": [
4,
5,
6
]
},
"returns": [
4,
5,
6
]
},
{
"arguments": {
"value": true,
"accept": 123
},
"returns": 123
},
{
"arguments": {
"value": false,
"accept": 1
},
"returns": null
}
]
}