Validate JSON data with schemas, types, required fields, formats, composition, and API contracts.
Lessons
Address parts of a document with JSON Pointer paths.
JSON Pointer is easiest to learn by reading the example, changing it, and observing the result.
// JSON Pointer addresses a location inside a document.
//
// "" -> the whole document
// "/properties/title" -> the title schema
// "/$defs/address/city" -> the city subschema
// "/items/0" -> the first array item
//
// Used by $ref: { "$ref": "#/$defs/address" }Practice the JSON Pointer example in a small scratch file, then explain what changed and why.