Pipedream · Schema

PageInfo

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
count integer Number of items returned
total_count integer Total number of items
start_cursor string Used to fetch the previous page of items
end_cursor string Used to fetch the next page of items
View JSON Schema on GitHub

JSON Schema

pipedream-pageinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PageInfo",
  "title": "PageInfo",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Number of items returned",
      "example": 10
    },
    "total_count": {
      "type": "integer",
      "description": "Total number of items",
      "example": 120
    },
    "start_cursor": {
      "type": "string",
      "description": "Used to fetch the previous page of items",
      "nullable": true
    },
    "end_cursor": {
      "type": "string",
      "description": "Used to fetch the next page of items",
      "nullable": true
    }
  }
}