Adobe Experience Cloud · JSON Structure

Journey Optimizer Api Offer List Structure

OfferList schema

Type: object Properties: 2
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

OfferList 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

offers 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-offer-list-structure.json",
  "name": "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": "datetime"
          },
          "endDate": {
            "type": "datetime"
          },
          "priority": {
            "type": "int32"
          }
        }
      }
    },
    "totalCount": {
      "type": "int32"
    }
  }
}