JSON Validation
The process of checking a JSON document against a set of rules (often a JSON Schema) to ensure it is both well-formed and structurally correct.
Validation prevents bad data from entering your system. A validator first checks for syntax errors (like missing commas) and can then check against a schema to ensure required fields are present and data types are correct.