{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TooManyRequestsResponse", "title": "TooManyRequestsResponse", "type": "object", "x-apideck-schema-id": "TooManyRequests", "properties": { "status_code": { "type": "number", "description": "HTTP status code", "example": 429 }, "error": { "type": "string", "description": "Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 6585)", "example": "Too Many Requests" }, "type_name": { "type": "string", "description": "The type of error returned", "example": "ConnectorRateLimitError" }, "message": { "type": "string", "description": "A human-readable message providing more details about the error.", "example": "Connector Rate Limit Error", "x-speakeasy-error-message": true }, "detail": { "type": "object", "properties": { "context": { "type": "string" }, "error": { "type": "object", "x-speakeasy-detail": true } } }, "ref": { "type": "string", "description": "Link to documentation of error type", "example": "https://developers.apideck.com/errors#connectorratelimiterror" } } }