Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JSONPathResult
$.store.book[*].authorThe authors of all books in the store
$..authorAll authors
$.store.*All things in store, which are some books and a red bicycle.
$.store..priceThe prices of everything in the store.
$..book[2]The third book
$..book[-1:]The last book
$..book[0,1] or $..book[:2]The first two books
$..book[?(@.isbn)]Filter to find all books with ISBN numbers
$..book[?(@.price<10)]Filter all books cheaper than 10
$..book[?(@.title like '/^M\w+/')]Filter al books with a title that starts with 'M'
$..*All members of JSON structure.

...