WSO2 · JSON Structure

Publisher Api Throttle Limit Structure

ThrottleLimit schema from WSO2 API Manager

Type: object Properties: 4 Required: 1
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Throttle Limit is a JSON Structure definition published by WSO2, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type requestCount bandwidth eventCount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-structure/publisher-api-throttle-limit-structure.json",
  "name": "Throttle Limit",
  "description": "ThrottleLimit schema from WSO2 API Manager",
  "required": [
    "type"
  ],
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of the throttling limit. Allowed values are \"REQUESTCOUNTLIMIT\" and \"BANDWIDTHLIMIT\".\nPlease see schemas of \"RequestCountLimit\" and \"BandwidthLimit\" throttling limit types in\nDefinitions section.\n",
      "example": "REQUESTCOUNTLIMIT",
      "enum": [
        "REQUESTCOUNTLIMIT",
        "BANDWIDTHLIMIT",
        "EVENTCOUNTLIMIT"
      ]
    },
    "requestCount": {
      "$ref": "#/components/schemas/RequestCountLimit"
    },
    "bandwidth": {
      "$ref": "#/components/schemas/BandwidthLimit"
    },
    "eventCount": {
      "$ref": "#/components/schemas/EventCountLimit"
    }
  }
}