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