{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DocumentList", "title": "DocumentList", "type": "object", "description": "A paginated list of documents", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Document" }, "description": "The list of documents for the current page" }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }