Validate JSON data with schemas, types, required fields, formats, composition, and API contracts.
Lessons
Signal that a property should no longer be used.
The deprecated Keyword is easiest to learn by reading the example, changing it, and observing the result.
{
"type": "object",
"properties": {
"fullName": { "type": "string" },
"name": { "type": "string", "deprecated": true }
}
}Practice the The deprecated Keyword example in a small scratch file, then explain what changed and why.