Skip to content

Latest commit

 

History

History
executable file
·
21 lines (18 loc) · 1.1 KB

jsonpath.md

File metadata and controls

executable file
·
21 lines (18 loc) · 1.1 KB

JSONPath

All the information on JSONPath you can eat can be found here.

Quick Reference

XPath JSONPath Description
/ $ The root object/element
. @ The current object/element
/ . or [] Child operator
.. N/A Parent operator
// .. Recursive descent
* * Wildcard
@ N/A Attribute access
[] [] Subscript operator
| [,] Union operator
N/A [start:end:step] Array slice operator
[] ?() Applies a filter (script) expression
N/A () Script expression
() N/A Grouping in Xpath