For the complete documentation index, see llms.txt. This page is also available as Markdown.

JSON

A valid JSON string

Specification

This type of parameter has no extra options.

It acts as a multi-line text field to the user, with one notable difference: the module automatically converts the input to a JSON object. So if you map "{{parameters.myJsonField}}" in Communication, that value will be an object (or array).

If the provided value is not valid JSON, the module throws a validation error.

Example

JSON input

[
    {
        "name": "json",
        "label": "JSON",
        "type": "json"
    }
]

Last updated