Kong · Schema

EventGatewayStaticKey

A symmetric key with its secret value.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string The unique name of the static key.
description string A human-readable description of the static key.
labels object
id string The unique identifier of the static key.
value object
created_at object
updated_at object
View JSON Schema on GitHub

JSON Schema

kong-eventgatewaystatickey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayStaticKey",
  "title": "EventGatewayStaticKey",
  "description": "A symmetric key with its secret value.\n",
  "type": "object",
  "properties": {
    "name": {
      "description": "The unique name of the static key.",
      "type": "string",
      "maxLength": 255,
      "minLength": 1,
      "x-unicode-pattern": "^[\\p{L}\\p{N}][\\p{L}\\p{N} _\\-\\.:/+']*[\\p{L}\\p{N}]$"
    },
    "description": {
      "description": "A human-readable description of the static key.",
      "type": "string",
      "default": "",
      "maxLength": 512
    },
    "labels": {
      "$ref": "#/components/schemas/Labels"
    },
    "id": {
      "description": "The unique identifier of the static key.",
      "type": "string",
      "format": "uuid"
    },
    "value": {
      "$ref": "#/components/schemas/GatewaySecret"
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    }
  },
  "required": [
    "name",
    "id",
    "created_at",
    "updated_at"
  ]
}