SObjectRecord

An sObject record with attributes and field values

CloudCRMCustomer ManagementEnterpriseSales

Properties

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

JSON Schema

salesforce-sales-cloud-sobjectrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SObjectRecord",
  "title": "SObjectRecord",
  "type": "object",
  "description": "An sObject record with attributes and field values",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "description": "The sObject type"
        },
        "url": {
          "type": "string",
          "description": "The relative URL for the record"
        }
      }
    },
    "Id": {
      "type": "string",
      "description": "The 18-character Salesforce record ID"
    }
  },
  "additionalProperties": true
}