Salesforce · Schema

Record

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
operation string
object string
createdById string
createdDate string
systemModstamp string
state string
concurrencyMode string
contentType string
apiVersion integer
jobType string
View JSON Schema on GitHub

JSON Schema

salesforce-record-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "operation": {
      "type": "string",
      "example": "example_value"
    },
    "object": {
      "type": "string",
      "example": "example_value"
    },
    "createdById": {
      "type": "string",
      "example": "500123"
    },
    "createdDate": {
      "type": "string",
      "example": "example_value"
    },
    "systemModstamp": {
      "type": "string",
      "example": "example_value"
    },
    "state": {
      "type": "string",
      "example": "example_value"
    },
    "concurrencyMode": {
      "type": "string",
      "example": "example_value"
    },
    "contentType": {
      "type": "string",
      "example": "example_value"
    },
    "apiVersion": {
      "type": "integer",
      "example": 10
    },
    "jobType": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "id",
    "operation",
    "object",
    "createdById",
    "createdDate",
    "systemModstamp",
    "state",
    "concurrencyMode",
    "contentType",
    "apiVersion",
    "jobType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Record"
}