Validate JSON data with schemas, types, required fields, formats, composition, and API contracts.
Lessons
Apply one schema to every array element.
Array items is easiest to learn by reading the example, changing it, and observing the result.
{
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": { "type": "string", "minLength": 1 }
}
}
}Practice the Array items example in a small scratch file, then explain what changed and why.