sObject Record

Represents a Salesforce sObject record with its attributes and field values. The specific fields available depend on the sObject type and field-level security.

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
attributes object Record metadata including sObject type and API URL
Id string The 18-character case-safe record ID
Name string Name field of the record (if the sObject has a Name field)
CreatedDate string When the record was created
CreatedById string ID of the user who created the record
LastModifiedDate string When the record was last modified
LastModifiedById string ID of the user who last modified the record
SystemModstamp string System-maintained modification timestamp
IsDeleted boolean Whether the record has been moved to the Recycle Bin
OwnerId string ID of the record owner (user or queue)
RecordTypeId string ID of the record type assigned to this record
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-sobject-record-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.salesforce.com/schemas/experience-cloud/sobject-record.json",
  "title": "sObject Record",
  "description": "Represents a Salesforce sObject record with its attributes and field values. The specific fields available depend on the sObject type and field-level security.",
  "type": "object",
  "properties": {
    "attributes": {
      "type": "object",
      "description": "Record metadata including sObject type and API URL",
      "properties": {
        "type": {
          "type": "string",
          "description": "API name of the sObject type (e.g., Account, Contact, CustomObject__c)"
        },
        "url": {
          "type": "string",
          "format": "uri",
          "description": "REST API URL for this record"
        }
      },
      "required": ["type", "url"]
    },
    "Id": {
      "type": "string",
      "description": "The 18-character case-safe record ID",
      "pattern": "^[a-zA-Z0-9]{18}$"
    },
    "Name": {
      "type": "string",
      "description": "Name field of the record (if the sObject has a Name field)"
    },
    "CreatedDate": {
      "type": "string",
      "format": "date-time",
      "description": "When the record was created"
    },
    "CreatedById": {
      "type": "string",
      "description": "ID of the user who created the record"
    },
    "LastModifiedDate": {
      "type": "string",
      "format": "date-time",
      "description": "When the record was last modified"
    },
    "LastModifiedById": {
      "type": "string",
      "description": "ID of the user who last modified the record"
    },
    "SystemModstamp": {
      "type": "string",
      "format": "date-time",
      "description": "System-maintained modification timestamp"
    },
    "IsDeleted": {
      "type": "boolean",
      "description": "Whether the record has been moved to the Recycle Bin",
      "default": false
    },
    "OwnerId": {
      "type": "string",
      "description": "ID of the record owner (user or queue)"
    },
    "RecordTypeId": {
      "type": "string",
      "description": "ID of the record type assigned to this record"
    }
  },
  "required": ["attributes", "Id"],
  "additionalProperties": true
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/salesforce-experience-cloud-sobject-record"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.