Kong · Schema

GroupMemberStatus

Object with information determining the group membership status of a control plane.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
is_member boolean Boolean indicating if a control plane is a member of a control plane group.
View JSON Schema on GitHub

JSON Schema

kong-groupmemberstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupMemberStatus",
  "title": "GroupMemberStatus",
  "description": "Object with information determining the group membership status of a control plane.",
  "type": "object",
  "properties": {
    "is_member": {
      "description": "Boolean indicating if a control plane is a member of a control plane group.",
      "type": "boolean",
      "example": true,
      "readOnly": true
    }
  },
  "required": [
    "is_member"
  ]
}