Offer

Offer schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
id integer
name string
type string
content string
modifiedAt string
View JSON Schema on GitHub

JSON Schema

target-api-offer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/target-api-offer-schema.json",
  "title": "Offer",
  "description": "Offer schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "content",
        "redirect",
        "dynamic"
      ]
    },
    "content": {
      "type": "string"
    },
    "modifiedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}