{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupArrayWithLinks", "title": "GroupArrayWithLinks", "description": "Same as GroupArray but with `_links` property.", "required": [ "limit", "results", "size", "start", "_links" ], "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/Group" }, "example": [] }, "start": { "type": "integer", "format": "int32", "example": 10 }, "limit": { "type": "integer", "format": "int32", "example": 10 }, "size": { "type": "integer", "format": "int32", "example": 10 }, "totalSize": { "type": "integer", "format": "int64", "default": 0, "description": "This property will return total count of the objects before pagination is applied.\nThis value is returned if `shouldReturnTotalSize` is set to `true`.", "example": 10 }, "_links": { "$ref": "#/components/schemas/GenericLinks" } } }