Kong · Schema

CreatePortalIdpTeamGroupMappingRequest

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
team_id string The Konnect team ID.
group string The IdP group name.
View JSON Schema on GitHub

JSON Schema

kong-createportalidpteamgroupmappingrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePortalIdpTeamGroupMappingRequest",
  "title": "CreatePortalIdpTeamGroupMappingRequest",
  "type": "object",
  "properties": {
    "team_id": {
      "description": "The Konnect team ID.",
      "type": "string",
      "format": "uuid",
      "example": "6801e673-cc10-498a-94cd-4271de07a0d3"
    },
    "group": {
      "description": "The IdP group name.",
      "type": "string",
      "example": "API Engineers"
    }
  },
  "required": [
    "team_id",
    "group"
  ]
}