Salesforce · Schema

CreatechannelRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
FullName string
Metadata object
View JSON Schema on GitHub

JSON Schema

salesforce-createchannel-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "FullName": {
      "type": "string",
      "example": "example_value"
    },
    "Metadata": {
      "type": "object",
      "properties": {
        "channelType": {
          "type": "string",
          "example": "example_value"
        },
        "label": {
          "type": "string",
          "example": "Example Title"
        }
      },
      "required": [
        "channelType",
        "label"
      ]
    }
  },
  "required": [
    "FullName",
    "Metadata"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreatechannelRequest"
}