Kong · Schema

TeamGroupMapping

A map of Konnect Team to IdP groups.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
team_id string The Konnect team ID.
groups array The IdP groups that are mapped to the specified team.
View JSON Schema on GitHub

JSON Schema

kong-teamgroupmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamGroupMapping",
  "title": "TeamGroupMapping",
  "description": "A map of Konnect Team to IdP groups.",
  "type": "object",
  "properties": {
    "team_id": {
      "description": "The Konnect team ID.",
      "type": "string",
      "format": "uuid",
      "example": "6801e673-cc10-498a-94cd-4271de07a0d3"
    },
    "groups": {
      "description": "The IdP groups that are mapped to the specified team.",
      "type": "array",
      "items": {
        "type": "string",
        "example": "API Engineers"
      },
      "uniqueItems": true
    }
  },
  "example": {
    "team_id": "6801e673-cc10-498a-94cd-4271de07a0d3",
    "groups": [
      "Tech Leads",
      "API Engineers"
    ]
  }
}