Salesforce · Schema

EligibleChannel

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
channelType string
store object
retailLocationGroup object
View JSON Schema on GitHub

JSON Schema

salesforce-eligible-channel-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "channelType": {
      "type": "string",
      "example": "example_value"
    },
    "store": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "Example Title"
        }
      },
      "required": [
        "name"
      ]
    },
    "retailLocationGroup": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "Example Title"
        }
      },
      "required": [
        "name"
      ]
    }
  },
  "required": [
    "channelType",
    "store",
    "retailLocationGroup"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EligibleChannel"
}