{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/slite/main/json-schema/SearchNoteResult.json", "title": "SearchNoteResult", "properties": { "hits": { "items": { "$ref": "#/components/schemas/SearchNoteHit" }, "type": "array" }, "nbPages": { "type": "number", "format": "double", "description": "Total number of pages for the current query" }, "page": { "type": "number", "format": "double", "description": "Current page number of the search pagination" } }, "required": [ "hits", "nbPages", "page" ], "type": "object" }