-
Notifications
You must be signed in to change notification settings - Fork 16
/
neq.json
184 lines (184 loc) · 5.09 KB
/
neq.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"id": "neq",
"summary": "Not equal to comparison",
"description": "Compares whether `x` is **not** strictly equal to `y`.\n\n**Remarks:**\n\n* Data types MUST be checked strictly. For example, a string with the content *1* is not equal to the number *1*. Nevertheless, an integer *1* is equal to a floating-point number *1.0* as `integer` is a sub-type of `number`.\n* If any operand is `null`, the return value is `null`.\n* Strings are expected to be encoded in UTF-8 by default.\n* Temporal strings are normal strings. To compare temporal strings as dates/times, use ``date_difference()``.",
"categories": [
"texts",
"comparison"
],
"parameters": [
{
"name": "x",
"description": "First operand.",
"schema": {
"type": [
"number",
"boolean",
"string",
"null"
]
}
},
{
"name": "y",
"description": "Second operand.",
"schema": {
"type": [
"number",
"boolean",
"string",
"null"
]
}
},
{
"name": "delta",
"description": "Only applicable for comparing two numbers. If this optional parameter is set to a positive non-zero number the non-equality of two numbers is checked against a delta value. This is especially useful to circumvent problems with floating-point inaccuracy in machine-based computation.\n\nThis option is basically an alias for the following computation: `gt(abs(minus([x, y]), delta)`",
"schema": {
"type": [
"number",
"null"
]
},
"default": null,
"optional": true
},
{
"name": "case_sensitive",
"description": "Only applicable for comparing two strings. Case sensitive comparison can be disabled by setting this parameter to `false`.",
"schema": {
"type": "boolean"
},
"default": true,
"optional": true
}
],
"returns": {
"description": "`true` if `x` is *not* equal to `y`, `null` if any operand is `null`, otherwise `false`.",
"schema": {
"type": [
"boolean",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": 1,
"y": null
},
"returns": null
},
{
"arguments": {
"x": 1,
"y": 1
},
"returns": false
},
{
"arguments": {
"x": 1,
"y": "1"
},
"returns": true
},
{
"arguments": {
"x": 0,
"y": false
},
"returns": true
},
{
"arguments": {
"x": 1.02,
"y": 1,
"delta": 0.01
},
"returns": true
},
{
"arguments": {
"x": -1,
"y": -1.001,
"delta": 0.01
},
"returns": false
},
{
"arguments": {
"x": 115,
"y": 110,
"delta": 10
},
"returns": false
},
{
"arguments": {
"x": "Test",
"y": "test"
},
"returns": true
},
{
"arguments": {
"x": "Test",
"y": "test",
"case_sensitive": false
},
"returns": false
},
{
"arguments": {
"x": "Ä",
"y": "ä",
"case_sensitive": false
},
"returns": false
},
{
"arguments": {
"x": "2018-01-01T00:00:00Z",
"y": "2018-01-01T00:00:00+00:00"
},
"returns": true
},
{
"arguments": {
"x": null,
"y": null
},
"returns": null
}
],
"process_graph": {
"eq": {
"process_id": "eq",
"arguments": {
"x": {
"from_parameter": "x"
},
"y": {
"from_parameter": "y"
},
"delta": {
"from_parameter": "delta"
},
"case_sensitive": {
"from_parameter": "case_sensitive"
}
}
},
"not": {
"process_id": "not",
"arguments": {
"x": {
"from_node": "eq"
}
},
"result": true
}
}
}