{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IdpTeamGroupMapping", "title": "IdpTeamGroupMapping", "description": "A mapping between a Konnect team and an identity provider group.", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UUID" }, "team_id": { "description": "The Konnect team ID.", "type": "string", "format": "uuid", "example": "6801e673-cc10-498a-94cd-4271de07a0d3" }, "group": { "description": "The identity provider group name. Group names are case sensitive.", "type": "string", "example": "Tech Leads" }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" } }, "required": [ "id", "team_id", "group", "created_at", "updated_at" ] }