Apache SeaTunnel · Schema
JobDetail
Detailed information about a SeaTunnel job
Data IntegrationETLELTBatchStreamingApacheOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| jobId | string | |
| jobName | string | |
| jobStatus | string | |
| jobDag | object | Job DAG definition |
| metrics | object | |
| createTime | string | |
| finishTime | string | |
| errorMsg | string | Error message if job failed |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/apache-seatunnel/refs/heads/main/json-schema/apache-seatunnel-job-detail-schema.json",
"title": "JobDetail",
"description": "Detailed information about a SeaTunnel job",
"type": "object",
"properties": {
"jobId": {
"type": "string"
},
"jobName": {
"type": "string"
},
"jobStatus": {
"type": "string",
"enum": [
"RUNNING",
"FINISHED",
"FAILED",
"CANCELED",
"CANCELLING"
]
},
"jobDag": {
"type": "object",
"description": "Job DAG definition"
},
"metrics": {
"$ref": "#/components/schemas/JobMetrics"
},
"createTime": {
"type": "string",
"format": "date-time"
},
"finishTime": {
"type": "string",
"format": "date-time"
},
"errorMsg": {
"type": "string",
"description": "Error message if job failed"
}
}
}