BandwidthLimit 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-bandwidth-limit-schema.json", "title": "Bandwidth Limit object", "description": "BandwidthLimit schema from WSO2 API Manager", "allOf": [ { "$ref": "#/components/schemas/ThrottleLimitBase" }, { "required": [ "dataAmount", "dataUnit" ], "type": "object", "properties": { "dataAmount": { "type": "integer", "description": "Amount of data allowed to be transfered", "format": "int64", "example": 1000 }, "dataUnit": { "type": "string", "description": "Unit of data allowed to be transfered. Allowed values are \"KB\", \"MB\" and \"GB\"", "example": "KB" } } } ] }