Salesforce · Schema

PageInfo

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
hasNextPage boolean
hasPreviousPage boolean
startCursor string
endCursor string
View JSON Schema on GitHub

JSON Schema

salesforce-page-info-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "hasNextPage": {
      "type": "boolean",
      "example": true
    },
    "hasPreviousPage": {
      "type": "boolean",
      "example": true
    },
    "startCursor": {
      "type": "string",
      "example": "example_value"
    },
    "endCursor": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "hasNextPage",
    "hasPreviousPage",
    "startCursor",
    "endCursor"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PageInfo"
}