Validate JSON data with schemas, types, required fields, formats, composition, and API contracts.
Lessons
Document schemas with human-readable metadata.
Annotations: title & description is easiest to learn by reading the example, changing it, and observing the result.
{
"title": "Lesson",
"description": "A single learning unit in a course.",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Human-readable lesson name."
}
}
}Practice the Annotations: title & description example in a small scratch file, then explain what changed and why.