mBoard latest version was supporting search JSON with JSONata.
JSONata is an open-source, lightweight query and transformation language specifically designed for JSON (JavaScript Object Notation) data. It allows users to extract, filter, manipulate, and restructure JSON data with a concise and intuitive syntax.
Key features and capabilities of JSONata include:
- Querying: It provides a powerful and easy-to-learn syntax for navigating and selecting data within JSON documents, including nested objects and arrays.
- Transformation: JSONata enables the transformation of JSON data structures, allowing the creation of new JSON objects or arrays based on specific requirements.
- Expressions: It supports a rich set of expressions for various operations, including string manipulation, arithmetic calculations, and logical comparisons.
- Functions: JSONata offers a comprehensive library of built-in functions for common tasks like mapping, filtering, sorting, summing, and string operations. It also allows for the definition of custom functions.
- Compact Notation: JSONata expressions are designed to be compact and expressive, facilitating efficient data manipulation.
Source: https://jsonata.org/

