Validate JSON data with schemas, types, required fields, formats, composition, and API contracts.
Lessons
Require an exact value.
Constant Values (const) is easiest to learn by reading the example, changing it, and observing the result.
{
"type": "object",
"properties": {
"country": { "const": "US" },
"version": { "const": 2 }
}
}Practice the Constant Values (const) example in a small scratch file, then explain what changed and why.