{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotesPaginated", "title": "NotesPaginated", "type": "object", "properties": { "raw": { "type": "string" }, "next_page": { "type": "string" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Note" } } }, "required": [ "next_page", "data" ] }