CAKRAWALA
Start
FLOWFORGE
Knowledge
Tools
Search
About
Schema Lab
Validate a JSON instance against a JSON Schema subset.
Schema
{ "type": "object", "required": ["name"], "additionalProperties": false, "properties": { "name": { "type": "string", "minLength": 1 }, "age": { "type": "integer", "minimum": 0 } } }
Instance
{ "name": "Ada", "age": 36 }
Export Report
Validation
✓ Instance matches the schema.