{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListGroupsPaginatedResponseContent", "title": "ListGroupsPaginatedResponseContent", "type": "object", "additionalProperties": false, "required": [ "groups" ], "properties": { "groups": { "type": "array", "items": { "$ref": "#/components/schemas/Group" } }, "next": { "type": "string", "description": "A cursor to be used as the \"from\" query parameter for the next page of results." }, "start": { "type": "number" }, "limit": { "type": "number" }, "total": { "type": "number" } } }