{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidationResult", "title": "ValidationResult", "type": "object", "properties": { "events": { "type": "array", "items": { "type": "object", "properties": { "eventUuid": { "type": "string" }, "valid": { "type": "boolean" }, "errors": { "type": "array", "items": { "type": "object", "properties": { "field": { "type": "string" }, "message": { "type": "string" } } } } } } } } }