Batch 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/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" } } }