JSON Path Tester
Test and validate JSONPath expressions against JSON data to extract specific values.
JSONPath Syntax Guide:
| Expression | Description |
|---|---|
$ | Root element |
@ | Current element |
. | Child operator |
.. | Recursive descent |
* | Wildcard (all elements) |
[] | Subscript operator |
[,] | Union operator |
[start:end] | Array slice |
[?(expression)] | Filter expression |