Query and filter JSON data using JSONPath expressions.
$ — Root object
. or [] — Child operator
.. — Recursive descent
* — Wildcard (all children)
[n] — Array index
[start:end] — Array slice
[?(@.field)] — Filter expression
Examples: $.store.book[0].title · $..author · $.store.book[?(@.price<10)]