ThrottleLimitBase 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-throttle-limit-base-schema.json", "title": "Throttle Limit Base", "description": "ThrottleLimitBase schema from WSO2 API Manager", "required": [ "timeUnit", "unitTime" ], "type": "object", "properties": { "timeUnit": { "type": "string", "description": "Unit of the time. Allowed values are \"sec\", \"min\", \"hour\", \"day\"", "example": "min" }, "unitTime": { "type": "integer", "description": "Time limit that the throttling limit applies.", "example": 10 } } }