{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedResponse", "title": "PaginatedResponse", "type": "object", "properties": { "items": { "type": "array", "items": {} }, "hasMore": { "type": "boolean" }, "limit": { "type": "integer" }, "offset": { "type": "integer" }, "count": { "type": "integer" }, "links": { "type": "array", "items": { "$ref": "#/components/schemas/Link" } } } }