ApplicationThrottlePolicy schema from WSO2 API Manager
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/admin-api-application-throttle-policy-schema.json", "title": "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" } } } ] }