{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupList", "title": "GroupList", "type": "object", "description": "Paginated list of groups.", "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/Group" } }, "totalResults": { "type": "integer", "format": "int64" }, "count": { "type": "integer", "format": "int64" }, "limit": { "type": "integer", "format": "int64" }, "offset": { "type": "integer", "format": "int64" }, "hasMore": { "type": "boolean" } } }