Tyk · Schema

AuthConfig

API GatewayAPI ManagementGraphQLOpen Source

Properties

Name Type Description
auth_header_name string
cookie_name string
disable_header boolean
name string
param_name string
use_certificate boolean
use_cookie boolean
use_param boolean
validate_signature boolean
View JSON Schema on GitHub

JSON Schema

tyk-gateway-auth-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AuthConfig",
  "type": "object",
  "properties": {
    "auth_header_name": {
      "type": "string"
    },
    "cookie_name": {
      "type": "string"
    },
    "disable_header": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "param_name": {
      "type": "string"
    },
    "use_certificate": {
      "type": "boolean"
    },
    "use_cookie": {
      "type": "boolean"
    },
    "use_param": {
      "type": "boolean"
    },
    "validate_signature": {
      "type": "boolean"
    }
  }
}