Salesforce · JSON Structure

Salesforce Page Info Structure

Type: object Properties: 4 Required: 4
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

PageInfo is a JSON Structure definition published by Salesforce, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

hasNextPage hasPreviousPage startCursor endCursor

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "PageInfo",
  "properties": {
    "hasNextPage": {
      "type": "boolean"
    },
    "hasPreviousPage": {
      "type": "boolean"
    },
    "startCursor": {
      "type": "string"
    },
    "endCursor": {
      "type": "string"
    }
  },
  "required": [
    "hasNextPage",
    "hasPreviousPage",
    "startCursor",
    "endCursor"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}