JSON Schema validator
Check a JSON document against a JSON Schema and get a readable, line-by-line error report.
JSON Schema validator
Paste a JSON document on one side and a JSON Schema on the other, and this tool tells you whether the document matches — and if it doesn't, exactly where and why. Each problem is reported as one line with the JSON Pointer path to the offending value, the schema keyword that failed and the actual value found there, so you can jump straight to the fix instead of hunting through a large payload by hand.
The validator covers the everyday core of JSON Schema draft-07: "type" (including union arrays like ["string","null"] for nullable fields), "required" and "properties", "additionalProperties" as either a boolean or its own schema, "items" for both list and tuple validation, "minItems"/"maxItems"/"uniqueItems", the numeric keywords "minimum"/"maximum"/"exclusiveMinimum"/"exclusiveMaximum"/"multipleOf", the string keywords "minLength"/"maxLength"/"pattern", "enum" and "const", and the combinators "anyOf"/"allOf"/"oneOf"/"not". It also resolves "$ref" pointers to a schema's own "#/definitions" or "#/$defs" section — handy for schemas that factor out a shared object shape — and detects a "$ref" that loops back on itself instead of freezing the page.
This is a validator, not a schema-driven form builder: it does not fetch a schema from a URL or an "$id", and it never will, because that would mean sending your data or your schema definition off your device. Any "$ref" pointing outside the document is reported as unsupported rather than silently ignored, so you always know exactly what was and wasn't checked.
Everything runs locally in your browser — the JSON document and the schema are parsed and checked on your device and never uploaded anywhere, which makes this safe to use with API payloads, config files or any other JSON that includes data you'd rather not paste into a random website.