Skip to main content

Overview

JSONPath is used inside expression contexts such as TRIGGER and ACTIONS.<ref>.result to access nested fields and arrays.

Field access

Use dot notation for nested fields.
Use quoted field names when the field contains special characters.

Array access

Use brackets to access array items.

Wildcards

Use [*] to select all items in an array.
Wildcard expressions return a list.

Filters

Use filters to select matching items.
Filter expressions return a list.

Missing fields

Accessing a field that does not exist returns None. No error is raised.
Guard against None with a null check before dereferencing deeper fields.
  • 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.