validate_node_config
Validate node configuration parameters against type definitions to ensure proper setup and prevent errors in n8n workflows.
Instructions
Validate a node configuration against its type definition
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| credentials | No | Optional credentials object | |
| params | Yes | The node parameters to validate | |
| type | Yes | The node type name |
Input Schema (JSON Schema)
{
"properties": {
"credentials": {
"description": "Optional credentials object",
"type": "object"
},
"params": {
"description": "The node parameters to validate",
"type": "object"
},
"type": {
"description": "The node type name",
"type": "string"
}
},
"required": [
"type",
"params"
],
"type": "object"
}