Salesforce · Schema

LastModifiedBy

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
name string
profilePhotoUrl string
View JSON Schema on GitHub

JSON Schema

salesforce-last-modified-by-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "profilePhotoUrl": {
      "type": "string",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "id",
    "name",
    "profilePhotoUrl"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LastModifiedBy"
}