Apideck · Schema

TooManyRequestsResponse

IntegrationsUnified API

Properties

Name Type Description
status_code number HTTP status code
error string Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 6585)
type_name string The type of error returned
message string A human-readable message providing more details about the error.
detail object
ref string Link to documentation of error type
View JSON Schema on GitHub

JSON Schema

apideck-toomanyrequestsresponse-schema.json Raw ↑
{
  "$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"
    }
  }
}