Salesforce · JSON Structure

Salesforce Accountswith Cursors Pagination Structure

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

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

Properties

data errors

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "AccountswithCursorsPagination",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "uiapi": {
          "type": "object",
          "properties": {
            "query": {
              "type": "object",
              "properties": {
                "Account": {
                  "type": "object",
                  "properties": {
                    "edges": {
                      "type": "array",
                      "description": "",
                      "items": {
                        "type": "object"
                      }
                    },
                    "totalCount": {
                      "type": "integer"
                    },
                    "pageInfo": {
                      "type": "object",
                      "properties": {
                        "hasNextPage": {
                          "type": "object"
                        },
                        "hasPreviousPage": {
                          "type": "object"
                        },
                        "startCursor": {
                          "type": "object"
                        },
                        "endCursor": {
                          "type": "object"
                        }
                      },
                      "required": [
                        "hasNextPage",
                        "hasPreviousPage",
                        "startCursor",
                        "endCursor"
                      ]
                    }
                  },
                  "required": [
                    "edges",
                    "totalCount",
                    "pageInfo"
                  ]
                }
              },
              "required": [
                "Account"
              ]
            }
          },
          "required": [
            "query"
          ]
        }
      },
      "required": [
        "uiapi"
      ]
    },
    "errors": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "data",
    "errors"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}