Workflow

Workflow schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
PKey string
label string
status string
startDate string
created string
View JSON Schema on GitHub

JSON Schema

campaign-api-workflow-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/campaign-api-workflow-schema.json",
  "title": "Workflow",
  "description": "Workflow schema",
  "type": "object",
  "properties": {
    "PKey": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "started",
        "paused",
        "stopped",
        "finished",
        "error"
      ]
    },
    "startDate": {
      "type": "string",
      "format": "date-time"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    }
  }
}