A paginated list of published entries.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EntryList", "title": "EntryList", "type": "object", "description": "A paginated list of published entries.", "properties": { "entries": { "type": "array", "description": "Array of entry objects.", "items": { "$ref": "#/components/schemas/Entry" } }, "count": { "type": "integer", "description": "Total count of matching entries when include_count is true." } } }