Adobe Experience Cloud · Schema
Offer
Offer schema
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| status | string | |
| representations | array | |
| startDate | string | |
| endDate | string | |
| priority | 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-schema.json",
"title": "Offer",
"description": "Offer schema",
"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"
}
}
}