{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalTeamGroupMappingResponse", "title": "PortalTeamGroupMappingResponse", "description": "A paginated list of portal team group mappings.", "type": "object", "properties": { "meta": { "$ref": "#/components/schemas/PaginatedMeta" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/PortalTeamGroupMapping" } } }, "example": { "meta": { "page": { "number": 1, "size": 10, "total": 2 } }, "data": [ { "team_id": "6801e673-cc10-498a-94cd-4271de07a0d3", "groups": [ "Tech Leads", "API Engineers" ] }, { "team_id": "7301e673-cc10-498a-94cd-4271de07a0d3", "groups": [ "Managers", "Directors" ] } ] } }