Tyk · Schema

SignatureConfig

API GatewayAPI ManagementGraphQLOpen Source

Properties

Name Type Description
algorithm string
allowed_clock_skew integer
error_code integer
error_message string
header string
param_name string
secret string
use_param boolean
View JSON Schema on GitHub

JSON Schema

tyk-gateway-signature-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SignatureConfig",
  "type": "object",
  "properties": {
    "algorithm": {
      "type": "string"
    },
    "allowed_clock_skew": {
      "type": "integer"
    },
    "error_code": {
      "type": "integer"
    },
    "error_message": {
      "type": "string"
    },
    "header": {
      "type": "string"
    },
    "param_name": {
      "type": "string"
    },
    "secret": {
      "type": "string"
    },
    "use_param": {
      "type": "boolean"
    }
  }
}