Skip to main content
reakyit.net
Home
About
Statistics
Experience
Skills
Projects
Tools
Achievements
Contact
EN
Get In Touch
reakyit.net
JSON Schema Validator
v1.0.0
Validate JSON data against a JSON Schema (draft-07) and get detailed error messages.
Tool
Documentation
API Reference
Code Examples
Examples
JSON Schema
{ "type": "object", "required": ["name", "age"], "properties": { "name": { "type": "string" }, "age": { "type": "integer", "minimum": 0 } } }
JSON data
{ "name": "Alice", "age": 30 }
Validate