Batch

Batch schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
id string
status string
created string
completed string
View JSON Schema on GitHub

JSON Schema

experience-platform-api-batch-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/experience-platform-api-batch-schema.json",
  "title": "Batch",
  "description": "Batch schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "loading",
        "staging",
        "success",
        "failed",
        "abandoned"
      ]
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "completed": {
      "type": "string",
      "format": "date-time"
    }
  }
}