Kong · Schema

TeamMapping

A team assignment is a mapping of an IdP group to a Konnect Team.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
group string The IdP group.
team_ids array An array of ID's that are mapped to the specified group.
View JSON Schema on GitHub

JSON Schema

kong-teammapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamMapping",
  "title": "TeamMapping",
  "description": "A team assignment is a mapping of an IdP group to a Konnect Team.",
  "type": "object",
  "properties": {
    "group": {
      "description": "The IdP group.",
      "type": "string",
      "example": "Service Developers"
    },
    "team_ids": {
      "description": "An array of ID's that are mapped to the specified group.",
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid",
        "example": "6801e673-cc10-498a-94cd-4271de07a0d3"
      },
      "uniqueItems": true
    }
  },
  "example": {
    "group": "Service Developers",
    "team_ids": [
      "6801e673-cc10-498a-94cd-4271de07a0d3"
    ]
  }
}