Conductor · Schema

TaskExecLog

AutomationOrchestrationStateTasksWorkflows

Properties

Name Type Description
log string Log message
taskId string Associated task ID
createdTime integer Timestamp of the log entry
View JSON Schema on GitHub

JSON Schema

conductor-conductor-task-exec-log-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TaskExecLog",
  "type": "object",
  "properties": {
    "log": {
      "type": "string",
      "description": "Log message"
    },
    "taskId": {
      "type": "string",
      "description": "Associated task ID"
    },
    "createdTime": {
      "type": "integer",
      "description": "Timestamp of the log entry"
    }
  }
}