Salesforce · Schema

UpdateaBatchofFavoritesRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
favorites array
View JSON Schema on GitHub

JSON Schema

salesforce-updatea-batchof-favorites-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "favorites": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "example": "abc123"
          },
          "name": {
            "type": "string",
            "example": "Example Title"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    }
  },
  "required": [
    "favorites"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateaBatchofFavoritesRequest"
}