OfferInput

OfferInput schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

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

JSON Schema

target-api-offer-input-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-input-schema.json",
  "title": "OfferInput",
  "description": "OfferInput schema",
  "type": "object",
  "required": [
    "name",
    "type",
    "content"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "content",
        "redirect"
      ]
    },
    "content": {
      "type": "string"
    }
  }
}