Tyk · Schema

RequestSigningMeta

API GatewayAPI ManagementGraphQLOpen Source

Properties

Name Type Description
algorithm string
certificate_id string
header_list array
is_enabled boolean
key_id string
secret string
signature_header string
View JSON Schema on GitHub

JSON Schema

tyk-gateway-request-signing-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RequestSigningMeta",
  "type": "object",
  "properties": {
    "algorithm": {
      "type": "string"
    },
    "certificate_id": {
      "type": "string"
    },
    "header_list": {
      "type": "array"
    },
    "is_enabled": {
      "type": "boolean"
    },
    "key_id": {
      "type": "string"
    },
    "secret": {
      "type": "string"
    },
    "signature_header": {
      "type": "string"
    }
  }
}