Overview
JSONPath is used inside expression contexts such asTRIGGER and ACTIONS.<ref>.result to access nested fields and arrays.
Field access
Use dot notation for nested fields.Array access
Use brackets to access array items.Wildcards
Use[*] to select all items in an array.
Filters
Use filters to select matching items.Missing fields
Accessing a field that does not exist returnsNone. No error is raised.
None with a null check before dereferencing deeper fields.
Related pages
- See the JSONPath cheatsheet for detailed filter patterns, return behavior, and more examples.
- See Expressions for expression syntax and contexts.
- See Functions for helper functions you can use alongside JSONPath access.