WSO2 · Schema

Event Count Limit object

EventCountLimit schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST
View JSON Schema on GitHub

JSON Schema

admin-api-event-count-limit-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-event-count-limit-schema.json",
  "title": "Event Count Limit object",
  "description": "EventCountLimit schema from WSO2 API Manager",
  "allOf": [
    {
      "$ref": "#/components/schemas/ThrottleLimitBase"
    },
    {
      "required": [
        "eventCount"
      ],
      "type": "object",
      "properties": {
        "eventCount": {
          "type": "integer",
          "description": "Maximum number of events allowed",
          "format": "int64",
          "example": 3000
        }
      }
    }
  ]
}