Kong · Schema

EncryptionKeyStatic

A static encryption key.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
key object
View JSON Schema on GitHub

JSON Schema

kong-encryptionkeystatic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EncryptionKeyStatic",
  "title": "EncryptionKeyStatic",
  "description": "A static encryption key.\n",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "static"
    },
    "key": {
      "$ref": "#/components/schemas/EncryptionKeyStaticReference"
    }
  },
  "required": [
    "type",
    "key"
  ]
}