| <ahref="http://jsonpath.herokuapp.com/?path=$.store.book[*].author"target="_blank">$.store.book[*].author</a>| The authors of all books |
| $.store.book[*].author | The authors of all books |
| <ahref="http://jsonpath.herokuapp.com/?path=$..author"target="_blank">$..author</a> | All authors |
| $..author | All authors |
| <ahref="http://jsonpath.herokuapp.com/?path=$.store.*"target="_blank">$.store.*</a> | All things, both books and bicycles |
| $.store.* | All things, both books and bicycles |
| <ahref="http://jsonpath.herokuapp.com/?path=$.store..price"target="_blank">$.store..price</a> | The price of everything |
| $.store..price | The price of everything |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[2]"target="_blank">$..book[2]</a> | The third book |
| $..book[2] | The third book |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[-2]"target="_blank">$..book[-2]</a> | The second to last book |
| $..book[-2] | The second to last book |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[0,1]"target="_blank">$..book[0,1]</a> | The first two books |
| $..book[0,1] | The first two books |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[:2]"target="_blank">$..book[:2]</a> | All books from index 0 (inclusive) until index 2 (exclusive) |
| $..book[:2] | All books from index 0 (inclusive) until index 2 (exclusive) |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[1:2]"target="_blank">$..book[1:2]</a> | All books from index 1 (inclusive) until index 2 (exclusive) |
| $..book[1:2] | All books from index 1 (inclusive) until index 2 (exclusive) |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[-2:]"target="_blank">$..book[-2:]</a> | Last two books |
| $..book[-2:] | Last two books |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[2:]"target="_blank">$..book[2:]</a> | All books from index 2 (inclusive) to last |
| $..book[2:] | All books from index 2 (inclusive) to last |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[?(@.isbn)]"target="_blank">$..book[?(@.isbn)]</a> | All books with an ISBN number |
| $..book[?(@.isbn)] | All books with an ISBN number |
| <ahref="http://jsonpath.herokuapp.com/?path=$.store.book[?(@.price < 10)]"target="_blank">$.store.book[?(@.price <10)]</a> | All books in store cheaper than 10 |
| <ahref="http://jsonpath.herokuapp.com/?path=$..book[?(@.price <= $['expensive'])]"target="_blank">$..book[?(@.price <= $['expensive'])]</a> | All books in store that are not "expensive" |
| $..book[?(@.price <= $['expensive'])] | All books in store that are not "expensive" |