Salesforce · Schema

Photo

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
fullEmailPhotoUrl string
largePhotoUrl string
mediumPhotoUrl string
photoVersionId string
smallPhotoUrl string
standardEmailPhotoUrl string
url string
View JSON Schema on GitHub

JSON Schema

salesforce-photo-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "fullEmailPhotoUrl": {
      "type": "string",
      "example": "user@example.com"
    },
    "largePhotoUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "mediumPhotoUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "photoVersionId": {
      "type": "string",
      "example": "500123"
    },
    "smallPhotoUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "standardEmailPhotoUrl": {
      "type": "string",
      "example": "user@example.com"
    },
    "url": {
      "type": "string",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "fullEmailPhotoUrl",
    "largePhotoUrl",
    "mediumPhotoUrl",
    "photoVersionId",
    "smallPhotoUrl",
    "standardEmailPhotoUrl",
    "url"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Photo"
}