WSO2 · JSON Structure

Admin Api Application Throttle Policy Structure

ApplicationThrottlePolicy schema from WSO2 API Manager

Type: Properties: 0
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Application Throttling Policy is a JSON Structure definition published by WSO2. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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/admin-api-application-throttle-policy-structure.json",
  "name": "Application Throttling Policy",
  "description": "ApplicationThrottlePolicy schema from WSO2 API Manager",
  "allOf": [
    {
      "$ref": "#/components/schemas/ThrottlePolicy"
    },
    {
      "required": [
        "defaultLimit"
      ],
      "type": "object",
      "properties": {
        "defaultLimit": {
          "$ref": "#/components/schemas/ThrottleLimit"
        },
        "burstLimit": {
          "$ref": "#/components/schemas/BurstLimit"
        }
      }
    }
  ]
}