{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorObject", "title": "ErrorObject", "type": "object", "properties": { "key": { "type": "string", "description": "HTTP status code." }, "message": { "type": "array", "items": { "$ref": "#/components/schemas/ErrorMessageObject" }, "description": "List of error messages." } } }