WSO2 · Schema

MaxTps

MaxTps schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
production integer
productionTimeUnit string Time unit for the production.
sandbox integer
sandboxTimeUnit string Time unit for the sandbox.
View JSON Schema on GitHub

JSON Schema

publisher-api-max-tps-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/publisher-api-max-tps-schema.json",
  "title": "MaxTps",
  "description": "MaxTps schema from WSO2 API Manager",
  "type": "object",
  "properties": {
    "production": {
      "type": "integer",
      "format": "int64",
      "example": 1000
    },
    "productionTimeUnit": {
      "type": "string",
      "description": "Time unit for the production.",
      "default": "SECOND",
      "enum": [
        "SECOND",
        "MINUTE",
        "HOUR"
      ]
    },
    "sandbox": {
      "type": "integer",
      "format": "int64",
      "example": 1000
    },
    "sandboxTimeUnit": {
      "type": "string",
      "description": "Time unit for the sandbox.",
      "default": "SECOND",
      "enum": [
        "SECOND",
        "MINUTE",
        "HOUR"
      ]
    }
  }
}