Accessing Objects with JSONPath
Accessing Objects and List Items with JSONPath in the Flow Builder Results
Last updated
Was this helpful?
Accessing Objects and List Items with JSONPath in the Flow Builder Results
Last updated
Was this helpful?
Locoia uses JSONPath for referencing data. Note that $ is not required anywhere within the app. Instead, we use Jinja2 so $.store.book[*].author
becomes {{ store.book[*].author }}
in Locoia.
Test your JSONPath with the (don't enter any private information).
JSONPath
Description
$.store.book[*].author
The authors of all books in the store
$..author
All authors
$.store.*
All things in store, which are some books and a red bicycle
$.store..price
The price of everything in the store
$..book[2]
The third book
$..book[(@.length-1)]
The last book via script subscript
$..book[-1:]
The last book via slice
$..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
$..book[?(@.price<10)]
Filter all books cheaper than 10
$..book[?(@.price==8.95)]
Filter all books that cost 8.95
$..book[?(@.price<30 && @.category=="fiction")]
Filter all fiction books cheaper than 30
$..*
All members of JSON structure