{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-agent-pagination-meta-schema.json", "title": "AgentPaginationMeta", "description": "AgentPaginationMeta schema from ReqRes API", "type": "object", "properties": { "limit": { "type": "integer" }, "returned": { "type": "integer" }, "next_cursor": { "type": [ "string", "null" ], "description": "Opaque cursor or null if at end." }, "prev_cursor": { "type": [ "string", "null" ], "description": "Always null in v1 (forward-only pagination)." }, "has_more": { "type": "boolean" }, "total_estimate": { "type": "integer" } }, "required": [ "limit", "returned", "next_cursor", "prev_cursor", "has_more", "total_estimate" ] }