Tyk · Schema

CircuitBreakerMeta

API GatewayAPI ManagementGraphQLOpen Source

Properties

Name Type Description
disable_half_open_state boolean
disabled boolean
method string
path string
return_to_service_after integer
samples integer
threshold_percent number
View JSON Schema on GitHub

JSON Schema

tyk-gateway-circuit-breaker-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CircuitBreakerMeta",
  "type": "object",
  "properties": {
    "disable_half_open_state": {
      "type": "boolean"
    },
    "disabled": {
      "type": "boolean"
    },
    "method": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "return_to_service_after": {
      "type": "integer"
    },
    "samples": {
      "type": "integer"
    },
    "threshold_percent": {
      "type": "number"
    }
  }
}