Kong · Schema

GroupConflictResource

A resource causing a conflict in a control plane group.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
id string The ID of the resource.
type string The type of the resource.
View JSON Schema on GitHub

JSON Schema

kong-groupconflictresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupConflictResource",
  "title": "GroupConflictResource",
  "description": "A resource causing a conflict in a control plane group.",
  "type": "object",
  "properties": {
    "id": {
      "description": "The ID of the resource.",
      "type": "string",
      "format": "uuid",
      "example": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "readOnly": true
    },
    "type": {
      "description": "The type of the resource.",
      "type": "string",
      "example": "service",
      "readOnly": true
    }
  },
  "required": [
    "id",
    "type"
  ]
}