WSO2 · Schema

Advanced Throttling Policy

AdvancedThrottlePolicy schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST
View JSON Schema on GitHub

JSON Schema

admin-api-advanced-throttle-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/admin-api-advanced-throttle-policy-schema.json",
  "title": "Advanced Throttling Policy",
  "description": "AdvancedThrottlePolicy schema from WSO2 API Manager",
  "allOf": [
    {
      "$ref": "#/components/schemas/ThrottlePolicy"
    },
    {
      "required": [
        "defaultLimit"
      ],
      "type": "object",
      "properties": {
        "defaultLimit": {
          "$ref": "#/components/schemas/ThrottleLimit"
        },
        "conditionalGroups": {
          "type": "array",
          "description": "Group of conditions which allow adding different parameter conditions to the throttling limit.\n",
          "items": {
            "$ref": "#/components/schemas/ConditionalGroup"
          }
        }
      }
    }
  ]
}