{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalTeamGroupMapping", "title": "PortalTeamGroupMapping", "description": "A map of portal teams to Identity Provider 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" ] } }