Kong · Schema

EncryptionKeyStaticReferenceById

A static encryption key reference by ID.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
id string The ID of the static key defined in the key source.
View JSON Schema on GitHub

JSON Schema

kong-encryptionkeystaticreferencebyid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EncryptionKeyStaticReferenceById",
  "title": "EncryptionKeyStaticReferenceById",
  "description": "A static encryption key reference by ID.",
  "type": "object",
  "properties": {
    "id": {
      "description": "The ID of the static key defined in the key source.",
      "type": "string",
      "format": "uuid",
      "minLength": 1
    }
  },
  "required": [
    "id"
  ]
}