Adobe Experience Cloud · Schema
OfferList
OfferList schema
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration
Properties
| Name | Type | Description |
|---|---|---|
| offers | 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-offer-list-schema.json",
"title": "OfferList",
"description": "OfferList schema",
"type": "object",
"properties": {
"offers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"draft",
"approved",
"archived"
]
},
"representations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"channel": {
"type": "string"
},
"placement": {
"type": "string"
},
"content": {
"type": "string"
}
}
}
},
"startDate": {
"type": "string",
"format": "date-time"
},
"endDate": {
"type": "string",
"format": "date-time"
},
"priority": {
"type": "integer"
}
}
}
},
"totalCount": {
"type": "integer"
}
}
}