ShareMystery
Home
Tools (81)
Toggle theme
Back to All Tools
JSON Validator
Validate JSON data against a JSON schema using Ajv to ensure correctness and conformity.
JSON Data
Format
{ "name": "John Doe", "age": 30, "email": "john.doe@example.com", "isStudent": false, "courses": [ { "title": "History", "credits": 3 }, { "title": "Math", "credits": 4 } ] }
JSON Schema
Format
{ "type": "object", "properties": { "name": { "type": "string", "minLength": 2 }, "age": { "type": "integer", "minimum": 0 }, "email": { "type": "string", "format": "email" }, "isStudent": { "type": "boolean" }, "courses": { "type": "array", "items": { "type": "object", "properties": { "title": { "type": "string" }, "credits": { "type": "integer", "minimum": 1 } }, "required": ["title", "credits"] } } }, "required": ["name", "age", "email"] }
Validate
Load Examples
Clear All
About This Tool & Use Cases