All the information on JSONPath you can eat can be found here.
| 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 |