Tyk · Schema

RateLimitMeta

API GatewayAPI ManagementGraphQLOpen Source

Properties

Name Type Description
disabled boolean
method string
path string
per number
rate number
View JSON Schema on GitHub

JSON Schema

tyk-gateway-rate-limit-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RateLimitMeta",
  "type": "object",
  "properties": {
    "disabled": {
      "type": "boolean"
    },
    "method": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "per": {
      "type": "number"
    },
    "rate": {
      "type": "number"
    }
  }
}