Albato · Schema

Execution

An automation execution record

No-Code AutomationWorkflow AutomationEmbedded iPaaSApp IntegrationIntegrationsWebhooksWhite-Label

Properties

Name Type Description
id string
automation_id string
status string
started_at string
finished_at string
error_message string
steps_completed integer
View JSON Schema on GitHub

JSON Schema

albato-albato-automations-execution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-automations-execution-schema.json",
  "title": "Execution",
  "description": "An automation execution record",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "automation_id": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "started_at": {
      "type": "string",
      "format": "date-time"
    },
    "finished_at": {
      "type": "string",
      "format": "date-time"
    },
    "error_message": {
      "type": "string"
    },
    "steps_completed": {
      "type": "integer"
    }
  }
}