The top-level response that represents a failed request.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "required": [ "errors" ], "properties": { "errors": { "type": "array", "description": "A list of errors that describe the reasons why the request failed.", "items": { "$ref": "#/components/schemas/Error" } } }, "description": "The top-level response that represents a failed request.", "allOf": [ { "$ref": "#/components/schemas/Response" } ] }