Salesforce · Schema

BannerPhoto

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
bannerPhotoUrl string
bannerPhotoVersionId ['string', 'null']
url string
View JSON Schema on GitHub

JSON Schema

salesforce-banner-photo-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "bannerPhotoUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "bannerPhotoVersionId": {
      "type": "['string', 'null']",
      "example": "500123"
    },
    "url": {
      "type": "string",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "bannerPhotoUrl",
    "bannerPhotoVersionId",
    "url"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BannerPhoto"
}