WSO2 · Schema

Throttle Limit Base

ThrottleLimitBase schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
timeUnit string Unit of the time. Allowed values are "sec", "min", "hour", "day"
unitTime integer Time limit that the throttling limit applies.
View JSON Schema on GitHub

JSON Schema

admin-api-throttle-limit-base-schema.json Raw ↑
{
  "$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
    }
  }
}