MessageInput

MessageInput schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
name string
channel string
content object
View JSON Schema on GitHub

JSON Schema

journey-optimizer-api-message-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/journey-optimizer-api-message-input-schema.json",
  "title": "MessageInput",
  "description": "MessageInput schema",
  "type": "object",
  "required": [
    "name",
    "channel"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "channel": {
      "type": "string",
      "enum": [
        "email",
        "push",
        "sms",
        "inApp"
      ]
    },
    "content": {
      "type": "object"
    }
  }
}