SObjectRecord

A Salesforce SObject record with attributes metadata and dynamic fields

AutomationCloudCRMEnterpriseSales

Properties

Name Type Description
attributes object
Id string The 18-character Salesforce record ID
View JSON Schema on GitHub

JSON Schema

salesforce-automation-sobjectrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SObjectRecord",
  "title": "SObjectRecord",
  "type": "object",
  "description": "A Salesforce SObject record with attributes metadata and dynamic fields",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "description": "The API name of the SObject type"
        },
        "url": {
          "type": "string",
          "description": "The relative REST API URL for this record"
        }
      },
      "required": [
        "type"
      ]
    },
    "Id": {
      "type": "string",
      "description": "The 18-character Salesforce record ID"
    }
  },
  "additionalProperties": true
}