Hi n8n Team,
I faced the same issue with AI-text classifier
here my config details :
n8n version:1.68.0
Database (default: SQLite): PostgrSQL
n8n EXECUTIONS_PROCESS setting (default: own, main):Deprecated
Running n8n via (Docker, npm, n8n cloud, desktop app):Docker
Operating system:Ubuntu 22.04
Failed to parse. Text: "```json { "type": "object", "properties": { "Sales": { "type": "boolean", "description": "Should be true if the input has category \"Sales\"" }, "Human Resources (RH)": { "type": "boolean", "description": "Should be true if the input has category \"Human Resources (RH}\"" }, "Business Development": { "type": "boolean", "description": "Should be true if the input has category \"Business Development\"" }, "Procurement": { "type": "boolean", "description": "Should be true if the input has category \"Procurement\"" }, "Other": { "type": "boolean", "description": "Should be true if the input has category \"Other\"" } }, "required": ["Sales", "Human Resources (RH)", "Business Development", "Procurement", "Other"], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" } ```". Error: [ { "code": "invalid_type", "expected": "boolean", "received": "undefined", "path": [ "Sales" ], "message": "Required" }, { "code": "invalid_type", "expected": "boolean", "received": "undefined", "path": [ "Human Resources (RH)" ], "message": "Required" }, { "code": "invalid_type", "expected": "boolean", "received": "undefined", "path": [ "Business Development" ], "message": "Required" }, { "code": "invalid_type", "expected": "boolean", "received": "undefined", "path": [ "Procurement" ], "message": "Required" }, { "code": "invalid_type", "expected": "boolean", "received": "undefined", "path": [ "Other" ], "message": "Required" } ] Troubleshooting URL: https://js.langchain.com/docs/troubleshooting/errors/OUTPUT_PARSING_FAILURE/
Regards