JSON Toolbox
JSON Tools
Turn a JSON object into flattened variables for use in later steps.
Parameters
-
filter: A comma separated list of values to filter for
-
filterType: Equals or Not Equals Filter
Example Usage
{
"books": [
{
"title": "The Great Gatsby",
"summary": "The Great Gatsby is a novel by F. Scott Fitzgerald that follows the story of Jay Gatsby, a wealthy and mysterious man, and his pursuit of the American Dream. Set in the 1920s, the book explores themes of love, wealth, and the corruption of the American Dream.",
"author": "F. Scott Fitzgerald"
}
]
}
{{ jsonTools | filter: "The Great Gatsby" | filterType: "Equals" }}
filterType
to Not Equals
would yield:
{
"books": [
{
"summary": "The Great Gatsby is a novel by F. Scott Fitzgerald that follows the story of Jay Gatsby, a wealthy and mysterious man, and his pursuit of the American Dream. Set in the 1920s, the book explores themes of love, wealth, and the corruption of the American Dream.",
"author": "F. Scott Fitzgerald"
}
]
}
ReMap a JSON object
Remap elements in a JSON object from one key name to another.
Parameters
-
match: The element to match.
-
replace: The replacement.
Array Filter
Filter a JSON Array.
You can use a filterType of "Index" and pass the numerical index of the array to return.
"IndexRange" expects number-number of indexes to extract EG: 1-3.
Value match and value Contains will filter the array by finding objects in the array with properties that match the filter value.
Parameters
-
filter: The value to filter for based on Filter Type
-
filterType: Select the type of filter
Key Filter
Filter a JSON Object by list of keys
Parameters
- filter: A comma separated list of keys to filter a json object by
JSON to Variables
Turn a JSON object into flattened variables for use in later steps.
Example Usage
Data can come from a LLM, a file, REST API response, etc
{{ LLM | prompt: "Output some information about a book in JSON format. Include title, summary, and author." | modelCard: "" }}=>{{ jsonToVars }}
{
"title": "The Great Gatsby",
"summary": "The Great Gatsby is a novel by F. Scott Fitzgerald that follows the story of Jay Gatsby, a wealthy and mysterious man, and his pursuit of the American Dream. Set in the 1920s, the book explores themes of love, wealth, and the corruption of the American Dream.",
"author": "F. Scott Fitzgerald"
}

Variables to JSON
Turn flattened variables into JSON object. (The opposite of jsonToVars)
Parameters
-
path: The starting path of the flattened JSON to begin from, in dot notation.
-
variable: The variable to assign the formed JSON to.
-
includePath: Include the full path in the JSON
-
output: output the JSON from the node in addition to setting it as a variable
Example Usage 1
Will yield:Example Usage 2
Using the path
parameter, we can specify the starting path of values we want:
JSON Escape
Escapes a string for use within a JSON object.
Example Usage
{
"books": [
{
"title": "The Great Gatsby",
"summary": "The Great Gatsby is a novel by F. Scott Fitzgerald that follows the story of Jay Gatsby, a wealthy and mysterious man, and his pursuit of the American Dream. Set in the 1920s, the book explores themes of love, wealth, and the corruption of the American Dream.",
"author": "F. Scott Fitzgerald"
}
]
}
{{ jsonEscape }}
{\n \"books\": [\n {\n \"title\": \"The Great Gatsby\",\n \"summary\": \"The Great Gatsby is a novel by F. Scott Fitzgerald that follows the story of Jay Gatsby, a wealthy and mysterious man, and his pursuit of the American Dream. Set in the 1920s, the book explores themes of love, wealth, and the corruption of the American Dream.\",\n \"author\": \"F. Scott Fitzgerald\"\n }\n ]\n}\n