Salesforce · Schema

GetParallelResultsforaQueryJob

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
resultPages array
nextRecordsUrl string
done boolean
View JSON Schema on GitHub

JSON Schema

salesforce-get-parallel-resultsfora-query-job-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "resultPages": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "resultLink": {
            "type": "string",
            "example": "example_value"
          }
        },
        "required": [
          "resultLink"
        ]
      }
    },
    "nextRecordsUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "done": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "resultPages",
    "nextRecordsUrl",
    "done"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GetParallelResultsforaQueryJob"
}