{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "required": ["id", "email"], "additionalProperties": false, "properties": { "id": { "type": "integer", "minimum": 1 }, "email": { "type": "string", "format": "email" }, "tags": { "type": "array", "items": { "type": "string" } } } }