Adobe Experience Cloud · Schema
CampaignList
CampaignList schema
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration
Properties
| Name | Type | Description |
|---|---|---|
| campaigns | array | |
| totalCount | integer |
JSON Schema
{
"$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-campaign-list-schema.json",
"title": "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": "string",
"format": "date-time"
},
"endDate": {
"type": "string",
"format": "date-time"
}
}
}
}
}
},
"totalCount": {
"type": "integer"
}
}
}