Kong · Schema

PortalTeamGroupMappingsUpdateRequest

A set of mappings to update from a team to their groups.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
data array The IdP groups to map to the given team.
View JSON Schema on GitHub

JSON Schema

kong-portalteamgroupmappingsupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalTeamGroupMappingsUpdateRequest",
  "title": "PortalTeamGroupMappingsUpdateRequest",
  "description": "A set of mappings to update from a team to their groups.",
  "type": "object",
  "properties": {
    "data": {
      "description": "The IdP groups to map to the given team.",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "team_id": {
            "type": "string",
            "format": "uuid"
          },
          "groups": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "example": {
    "data": [
      {
        "team_id": "af91db4c-6e51-403e-a2bf-33d27ae50c0a",
        "groups": [
          "Service Developer"
        ]
      }
    ]
  }
}