validate_workflow_expressions
Check n8n workflow JSON for syntax errors in expressions, variables, and references, returning detailed error locations for correction.
Instructions
Validate n8n expressions: syntax {{}}, variables ($json/$node), references. Returns errors with locations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workflow | Yes | The workflow JSON to check for expression errors. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"workflow": {
"description": "The workflow JSON to check for expression errors.",
"type": "object"
}
},
"required": [
"workflow"
],
"type": "object"
}