Skip to main content
Filter expressions are used when doing lookups in JSON or JavaScript schemas. Below is a list of examples of what you can do with the filter.
If you are using JavaScript and your filter contains expressions, it’s often easier to use string interpolation instead of string concatination. See MDN Web Docs .
If you are comparing values containing URI special characters, you should URI encode the value in your filter expression. See MDN Web Docs.

Examples

Examples of supported binary operators & expressions:
EQUALS operator
NOT EQUALS operator
AND operator
OR operator
An array contains any matching value:
Please note that our filter expressions only support one use of any per expression.
E.g. properties.tags/any(t: t eq 'tag1') or properties.tags/any(t: t eq 'tag2') is not supported.
Check whether the element exists in this collection
Full example