{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ErrorResponse", "description": "Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.", "type": "object", "properties": { "error": { "type": "string", "description": "Name is the error name." }, "error_description": { "type": "string", "description": "A small description about the error" }, "code": { "type": "integer", "format": "int64", "description": "Debug contains debug information." }, "title": { "type": "string", "description": "Debug contains debug information. This is usually not available and has to be enabled." } }, "required": [ "error", "error_description", "code", "title" ] }