Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ArgumentTypeDescription
JSON StringStringJSON string to be converted to attribute values.
JSON PathString

The JSON Path expression is evaluated against the data provided by the JSON String. It determines which elements are extracted from the JSON.

Defaults to “$” which matches the entire document. 

Lenientboolean

Lenient is a flag which determines whether to pass the JSON String leniently. Defaults to false.

Insert excerpt
JSON Node
JSON Node
nameJSONPathSyntax
nopaneltrue

Example

Code Block
jsonToItems("{data:{status:'success'}}", "$..status", true)

...