Tyk · Schema

CacheMeta

API GatewayAPI ManagementGraphQLOpen Source

Properties

Name Type Description
cache_key_regex string
cache_response_codes array
disabled boolean
method string
path string
timeout integer
View JSON Schema on GitHub

JSON Schema

tyk-gateway-cache-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CacheMeta",
  "type": "object",
  "properties": {
    "cache_key_regex": {
      "type": "string"
    },
    "cache_response_codes": {
      "type": "array"
    },
    "disabled": {
      "type": "boolean"
    },
    "method": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "timeout": {
      "type": "integer"
    }
  }
}