How to validate JSON against a JSON Schema

Paste JSON instance and schema — see validation errors with paths.

API contracts live in JSON Schema; payloads drift. The JSON Schema Validator checks instance data against your schema and lists every mismatch.

Try it — JSON instance and schema

How it works

  1. JSON instance — the data to validate.
  2. JSON Schema — draft-compatible schema document.
  3. Review errors — path and message per failure.

When to validate

Validate webhook payloads, config files, and API responses before they hit production pipelines.

Format first

Clean up JSON with the JSON Formatter if parsing fails.