Adobe Campaign · Schema

ServiceUpdate

ServiceUpdate from Adobe Campaign API

Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

Properties

Name Type Description
label string
messageType string
start string
end string
View JSON Schema on GitHub

JSON Schema

adobe-campaign-standard-service-update-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-schema/adobe-campaign-standard-service-update-schema.json",
  "title": "ServiceUpdate",
  "description": "ServiceUpdate from Adobe Campaign API",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "example": "Example Campaign"
    },
    "messageType": {
      "type": "string",
      "enum": [
        "email",
        "sms",
        "push"
      ],
      "example": "email"
    },
    "start": {
      "type": "string",
      "format": "date-time",
      "example": "example_value"
    },
    "end": {
      "type": "string",
      "format": "date-time",
      "example": "example_value"
    }
  }
}