SObjectRecord

A Salesforce sObject record with field values

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

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

JSON Schema

salesforce-experience-cloud-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 field values",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "description": "sObject type name"
        },
        "url": {
          "type": "string",
          "format": "uri",
          "description": "REST API URL for this record"
        }
      }
    },
    "Id": {
      "type": "string",
      "description": "The 18-character record ID"
    }
  },
  "additionalProperties": true
}