Cobalt · Schema
Execution
A workflow execution record within the Cobalt embedded integration platform.
AutomationEmbedded iPaaSIntegrations
Properties
| Name | Type | Description |
|---|---|---|
| _id | string | Execution ID. |
| workflow_id | string | The workflow that was executed. |
| linked_account_id | string | The linked account ID. |
| status | string | Execution status. |
| started_at | string | Execution start timestamp. |
| completed_at | string | Execution completion timestamp. |
| logs | array | Execution logs. |
JSON Schema
{
"$id": "https://raw.githubusercontent.com/api-evangelist/cobalt/refs/heads/main/json-schema/execution.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Execution",
"description": "A workflow execution record within the Cobalt embedded integration platform.",
"type": "object",
"properties": {
"_id": {
"type": "string",
"description": "Execution ID."
},
"workflow_id": {
"type": "string",
"description": "The workflow that was executed."
},
"linked_account_id": {
"type": "string",
"description": "The linked account ID."
},
"status": {
"type": "string",
"enum": [
"pending",
"running",
"completed",
"failed"
],
"description": "Execution status."
},
"started_at": {
"type": "string",
"format": "date-time",
"description": "Execution start timestamp."
},
"completed_at": {
"type": "string",
"format": "date-time",
"description": "Execution completion timestamp."
},
"logs": {
"type": "array",
"description": "Execution logs.",
"items": {
"type": "object"
}
}
}
}