An error response from the API.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Error", "title": "Error", "type": "object", "description": "An error response from the API.", "properties": { "error": { "type": "object", "properties": { "code": { "type": "integer", "description": "The HTTP status code." }, "message": { "type": "string", "description": "A human-readable description of the error." }, "errors": { "type": "array", "description": "Detailed error information.", "items": { "type": "object", "properties": { "domain": { "type": "string" }, "reason": { "type": "string" }, "message": { "type": "string" } } } } }, "example": "example_value" } } }