ThrottleSettings

The API request rate limits.

APIs.ioEngineeringPlatform

Properties

Name Type Description
burstLimit object
rateLimit object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-throttlesettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThrottleSettings",
  "title": "ThrottleSettings",
  "type": "object",
  "properties": {
    "burstLimit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "description": "The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit."
        }
      ]
    },
    "rateLimit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Double"
        },
        {
          "description": "The API target request rate limit."
        }
      ]
    }
  },
  "description": " The API request rate limits."
}