JSONPath is a query language used to extract or select specific data and navigate through elements within a JSON document. It is conceptually similar to XPath, which is used for XML documents.
$..book[0,1] The first two books via subscript union $..book[:2] The first two books via subscript array slice $..book[?(@.isbn)] Filter all books with isbn number ...