{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InsightPaginatedResponse", "title": "InsightPaginatedResponse", "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/Insight" } }, "metadata": { "$ref": "#/components/schemas/PaginationMeta" } }, "required": [ "results", "metadata" ] }