Using JSONPath to Filter JSON data
In this article, we discuss using JSONPath expressions in the Data Selector to query and filter JSON data returned from the web service. For a complete overview of the JSONPath filter syntax please refer to JSONPath - XPath for JSON.
Bind to Inner Objects
Very often the JSON data returned from a web service contains a single parent object that wraps child objects and/or arrays. If the parent object is used directly the report will not display any detail records. Therefore it is more convenient to return an array of the child objects or a particular nested array using a JSONPath expression.
Example
JSONPath
$.store.book
Result
JSONPath Filter Arrays
In other scenarios, it might be useful to filter the JSON data to display only objects matching specific criteria.
Example
JSONPath
$.store.book[?(@.price<10)]
Result
When testing for equality in JSONPath filter, use
==
for equality and!=
for inequality.