Kong · Schema

BackendClusterReference

The backend cluster associated with the virtual cluster.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string The unique identifier of the backend cluster.
name object
View JSON Schema on GitHub

JSON Schema

kong-backendclusterreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackendClusterReference",
  "title": "BackendClusterReference",
  "description": "The backend cluster associated with the virtual cluster.",
  "type": "object",
  "properties": {
    "id": {
      "description": "The unique identifier of the backend cluster.",
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "$ref": "#/components/schemas/BackendClusterName"
    }
  },
  "additionalProperties": false,
  "required": [
    "id",
    "name"
  ]
}