Salesforce · JSON Structure

Salesforce Batch Info Structure

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

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

Properties

id jobId state createdDate systemModstamp numberRecordsProcessed numberRecordsFailed totalProcessingTime apiActiveProcessingTime apexProcessingTime

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "batchInfo",
  "properties": {
    "id": {
      "type": "string"
    },
    "jobId": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "createdDate": {
      "type": "string"
    },
    "systemModstamp": {
      "type": "string"
    },
    "numberRecordsProcessed": {
      "type": "integer"
    },
    "numberRecordsFailed": {
      "type": "integer"
    },
    "totalProcessingTime": {
      "type": "integer"
    },
    "apiActiveProcessingTime": {
      "type": "integer"
    },
    "apexProcessingTime": {
      "type": "integer"
    }
  },
  "required": [
    "id",
    "jobId",
    "state",
    "createdDate",
    "systemModstamp",
    "numberRecordsProcessed",
    "numberRecordsFailed",
    "totalProcessingTime",
    "apiActiveProcessingTime",
    "apexProcessingTime"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}