Adobe Experience Cloud · Schema
ActivityList
ActivityList schema
AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration
Properties
| Name | Type | Description |
|---|---|---|
| total | integer | |
| offset | integer | |
| limit | integer | |
| activities | array |
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/target-api-activity-list-schema.json",
"title": "ActivityList",
"description": "ActivityList schema",
"type": "object",
"properties": {
"total": {
"type": "integer"
},
"offset": {
"type": "integer"
},
"limit": {
"type": "integer"
},
"activities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"ab",
"xt",
"mvt",
"ap"
]
},
"state": {
"type": "string",
"enum": [
"approved",
"deactivated",
"archived"
]
},
"priority": {
"type": "integer"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
},
"startsAt": {
"type": "string",
"format": "date-time"
},
"endsAt": {
"type": "string",
"format": "date-time"
}
}
}
}
}
}