{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListPortalTeamsResponse", "title": "ListPortalTeamsResponse", "description": "A paginated list of teams in a portal.", "type": "object", "properties": { "meta": { "$ref": "#/components/schemas/PaginatedMeta" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/PortalTeamResponse" } } }, "example": { "meta": { "page": { "number": 1, "size": 10, "total": 3 } }, "data": [ { "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "name": "Partner", "description": "Team with access to Partner APIs", "created_at": "2022-02-07T17:46:57.52Z", "updated_at": "2022-09-25T13:00:00.00Z", "can_own_applications": false }, { "id": "af9fd312-a987-4628-b4c5-bb4f4fddd5f7", "name": "Internal", "description": "Team with access to Internal APIs", "created_at": "2022-02-07T17:46:57.52Z", "updated_at": "2022-09-25T13:00:00.00Z", "can_own_applications": true }, { "id": "4f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "name": "Root", "description": "Team with access to Internal Systems", "created_at": "2022-02-07T17:46:57.52Z", "updated_at": "2022-09-25T13:00:00.00Z", "can_own_applications": true } ] }, "required": [ "data", "meta" ] }