ActivityInput

ActivityInput schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
name string
type string
priority integer
startsAt string
endsAt string
View JSON Schema on GitHub

JSON Schema

target-api-activity-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-activity-input-schema.json",
  "title": "ActivityInput",
  "description": "ActivityInput schema",
  "type": "object",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "ab",
        "xt",
        "mvt",
        "ap"
      ]
    },
    "priority": {
      "type": "integer"
    },
    "startsAt": {
      "type": "string",
      "format": "date-time"
    },
    "endsAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}