What does this node do?
Extracts specific values from complex JSON using JSONPath expressions.Configuration
JSON data to extract from.
JSONPath expression.
JSONPath examples
| Path | Description |
|---|---|
$.name | Root-level property |
$.users[0] | First array item |
$.users[*].name | All user names |
$..email | All emails (recursive) |
$.users[?(@.active)] | Filter active users |

