Adobe Experience Cloud · JSON Structure

Journey Optimizer Api Campaign Input Structure

CampaignInput schema

Type: object Properties: 5 Required: 2
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

CampaignInput is a JSON Structure definition published by Adobe Experience Cloud, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description channel audienceId schedule

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-structure/journey-optimizer-api-campaign-input-structure.json",
  "name": "CampaignInput",
  "description": "CampaignInput schema",
  "type": "object",
  "required": [
    "name",
    "channel"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "channel": {
      "type": "string",
      "enum": [
        "email",
        "push",
        "sms",
        "inApp"
      ]
    },
    "audienceId": {
      "type": "string"
    },
    "schedule": {
      "type": "object"
    }
  }
}