WSO2 · JSON Structure

Admin Api Bandwidth Limit Structure

BandwidthLimit schema from WSO2 API Manager

Type: Properties: 0
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

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