Package Information
Released: 7/23/2025
Downloads: 1 weekly / 17 monthly
Latest Version: 0.1.2
Author: annh.dev
Documentation

n8n-nodes-ajv-validator
This is a custom n8n node that validates JSON data against a schema. It can be used in n8n workflows to ensure that the data being processed meets specific requirements.
Features
- Validate JSON data against a schema
- Ajv validation library for schema validation
- Install node with:
npm install n8n-nodes-ajv-validator
Usage
- Add the node to your n8n workflow.
- Configure the node with the JSON data you want to validate and the schema against which you want to validate it.
- Run the workflow to see if the JSON data is valid according to the schema.
- If the data is valid, the node will output the data. If it is invalid, it will throw an error with details about the validation failure.
- You can use the output of this node in subsequent nodes in your workflow to process only valid data.
Example json schema
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"age": {
"type": "integer",
"minimum": 0
}
},
"required": ["name", "age"]
}