A paginated list of groups.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupPage", "title": "GroupPage", "type": "object", "description": "A paginated list of groups.", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Group" }, "description": "The list of groups.", "example": [] }, "links": { "$ref": "#/components/schemas/PaginationLinks" } } }