JSON Schema Validator
src
/
tools
/
JSON Schema Validator
Validate
JSON Schema
{ "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "number", "minimum": 18 } }, "required": ["name", "age"] }
Input JSON
{ "name": "John Doe", "age": 16 }
Ready to validate...