kit
Home
Text & Code
JSON Schema Validator
JSON Schema Validator
Validate JSON data against a JSON Schema using AJV. Infer schema from data.
JSON data
{ "name": "John Doe", "age": 30, "email": "john@example.com" }
JSON Schema
Infer from data
{ "type": "object", "properties": { "name": { "type": "string", "minLength": 1 }, "age": { "type": "integer", "minimum": 0 }, "email": { "type": "string", "format": "email" } }, "required": ["name", "age"] }
Validate
Feedback