Tyk · Schema

CircuitBreaker

API GatewayAPI ManagementGraphQLOpen Source

Properties

Name Type Description
coolDownPeriod integer
enabled boolean
halfOpenStateEnabled boolean
sampleSize integer
threshold number
View JSON Schema on GitHub

JSON Schema

tyk-gateway-circuit-breaker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CircuitBreaker",
  "type": "object",
  "properties": {
    "coolDownPeriod": {
      "type": "integer"
    },
    "enabled": {
      "type": "boolean"
    },
    "halfOpenStateEnabled": {
      "type": "boolean"
    },
    "sampleSize": {
      "type": "integer"
    },
    "threshold": {
      "type": "number"
    }
  }
}