Most of Allowl's macros only evaluate to a boolean result. This is true of the following:
The simplest of the boolean macros is the logical NOT.
It takes a boolean value as input and evaluates to its boolean opposite.
The input can be any boolean value including
a literal true
or false
or a nested operation that returns a boolean result.
This macro only accepts this one parameter.
{"query": {"not": true }}
{"result": false}
{"query": {"not": {"not": true }}}
{"result": true}
The logical AND macro only accepts a single array parameter containing zero or more boolean values.
Each element of the array may be either a boolean literal or nested operation that returns a boolean result.
The macro returns true
if none of the elements of the array evaluate to false
. It otherwise returns false
.
Note that an empty array would evaluate to true
.
The logical OR macro only accepts a single array parameter containing zero or more boolean values.
Each element of the array may be either a boolean literal or nested operation that returns a boolean result.
The macro returns true
if at least one element of the array evaluates to true. It otherwise returns false
.
Note that an empty array would evaluate to false
.
Consider the following example:
{"query": {"and":[true,{"or":[{"not":false}]}]}}
{"result": true}
Starting with the innermost operation, the logical NOT evaluates to true
because this is the opposite of its input parameter.
The logical OR evaluates to true
because its input is a single element array
that meets the requirement of having at least one element that evaluates to true
.
The outermost logical AND operation evaluates to true
because its input is an
array of two elements, none of which evaluate to false
.
The evaluation of this query input expression yields the result of its outermost logical AND operation.
The Greater Than macro only accepts a single array parameter containing exactly two elements
that must evaluate to numeric values.
The macro returns true
if the evaluation of first element is larger than the
value of the second. It otherwise returns false
.
The Greater Than Or Equal macro only accepts a single array parameter containing exactly two elements
that must evaluate to numeric values.
The macro returns true
if the evaluation of first element is larger than or equal to the
value of the second. It otherwise returns false
.
The Less Than macro only accepts a single array parameter containing exactly two elements
that must evaluate to numeric values.
The macro returns true
if the evaluation of first element is less than the
value of the second. It otherwise returns false
.
The Less Than Or Equal macro only accepts a single array parameter containing exactly two elements
that must evaluate to numeric values.
The macro returns true
if the evaluation of first element is less than or equal to the
value of the second. It otherwise returns false
.
{"query": {"gt":[-1, 0]}}
{"result": false}
{"query": {"gte":[3, 3]}}
{"result": true}
{"query": {"lt":[-1, 0]}}
{"result": true}
{"query": {"lte":[-1, 0]}}
{"result": true}
The Equal macro only accepts a single array parameter containing exactly two elements
that either both evaluate to numeric values or both evaluate to string values.
The macro returns true
if the evaluation of first element is equal to the
value of the second. It otherwise returns false
.
The Equal macro only accepts a single array parameter containing exactly two elements
that either both evaluate to numeric values or both evaluate to string values.
The macro returns true
if the evaluation of first element is not equal to the
value of the second. It otherwise returns false
.
{"query": {"eq":["AA", "AAA"]}}
{"result": false}
{"query": {"neq":[-1, 0]}}
{"result": true}
The Inclusion macro requires two parameters:
"of"
The macro returns true
if the evaluation of any element of the array
in the first parameter is equal to the evaluation of the second parameter.
It otherwise returns false
.
{"query": {"inclusion":["A","A","B","C"],"of":"Z"}}
{"result": false}
{"query": {"inclusion":["A","A","B","C"],"of":"B"}}
{"result": true}
The Any macro requires two parameters:
"by"
Each element of the array given by the first parameter is temporarily assigned to
the It_Environment_Variable "$it"
and the second parameter is reevaluated. If the second parameter evaluates to true
in any of these cases, the macro returns true
.
It otherwise returns false
.
{"query": {"any":[1,2,3],"by":{"gt": ["$it", 3]}}}
{"result": false}
{"query": {"any":[1,2,3],"by":{"gte": ["$it", 3]}}}
{"result": true}
Grammar consistency testing and generation of images representing elements of the Allowl grammar were aided by Gunther Rademacher's open source Railroad Diagram Generator program. An online version is hosted at bottlecaps.de/rr/. The software was used with permission and according to its Apache License terms.