ReqRes · JSON Structure

Reqres Agent Pagination Meta Structure

AgentPaginationMeta schema from ReqRes API

Type: object Properties: 6 Required: 6
DevelopmentTestingPrototypingFake APIRESTAgent Sandbox

AgentPaginationMeta is a JSON Structure definition published by ReqRes, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

limit returned next_cursor prev_cursor has_more total_estimate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-structure/reqres-agent-pagination-meta-structure.json",
  "name": "AgentPaginationMeta",
  "description": "AgentPaginationMeta schema from ReqRes API",
  "type": "object",
  "properties": {
    "limit": {
      "type": "int32"
    },
    "returned": {
      "type": "int32"
    },
    "next_cursor": {
      "nullable": true,
      "type": "string",
      "description": "Opaque cursor or null if at end."
    },
    "prev_cursor": {
      "nullable": true,
      "type": "string",
      "description": "Always null in v1 (forward-only pagination)."
    },
    "has_more": {
      "type": "boolean"
    },
    "total_estimate": {
      "type": "int32"
    }
  },
  "required": [
    "limit",
    "returned",
    "next_cursor",
    "prev_cursor",
    "has_more",
    "total_estimate"
  ]
}