Adobe Experience Cloud · JSON Structure

Journey Optimizer Api Campaign List Structure

CampaignList schema

Type: object Properties: 2
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

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

Properties

campaigns totalCount

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-list-structure.json",
  "name": "CampaignList",
  "description": "CampaignList schema",
  "type": "object",
  "properties": {
    "campaigns": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "channel": {
            "type": "string",
            "enum": [
              "email",
              "push",
              "sms",
              "inApp"
            ]
          },
          "status": {
            "type": "string",
            "enum": [
              "draft",
              "scheduled",
              "live",
              "completed"
            ]
          },
          "schedule": {
            "type": "object",
            "properties": {
              "startDate": {
                "type": "datetime"
              },
              "endDate": {
                "type": "datetime"
              }
            }
          }
        }
      }
    },
    "totalCount": {
      "type": "int32"
    }
  }
}