WSO2 · JSON Structure

Publisher Api Request Count Limit Structure

RequestCountLimit schema from WSO2 API Manager

Type: Properties: 0
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Request Count 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/publisher-api-request-count-limit-structure.json",
  "name": "Request Count Limit object",
  "description": "RequestCountLimit schema from WSO2 API Manager",
  "allOf": [
    {
      "$ref": "#/components/schemas/ThrottleLimitBase"
    },
    {
      "required": [
        "requestCount"
      ],
      "type": "object",
      "properties": {
        "requestCount": {
          "type": "int64",
          "description": "Maximum number of requests allowed",
          "example": 30
        }
      }
    }
  ]
}