WSO2 · JSON Structure

Publisher Api Event Count Limit Structure

EventCountLimit schema from WSO2 API Manager

Type: Properties: 0
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

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