Apache SeaTunnel · Schema

JobInfo

Summary info for a SeaTunnel job

Data IntegrationETLELTBatchStreamingApacheOpen Source

Properties

Name Type Description
jobId string Job identifier
jobName string Job name
jobStatus string Current job status
createTime string
finishTime string
View JSON Schema on GitHub

JSON Schema

apache-seatunnel-job-info-schema.json Raw ↑
{
  "$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-info-schema.json",
  "title": "JobInfo",
  "description": "Summary info for a SeaTunnel job",
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string",
      "description": "Job identifier"
    },
    "jobName": {
      "type": "string",
      "description": "Job name"
    },
    "jobStatus": {
      "type": "string",
      "enum": [
        "RUNNING",
        "FINISHED",
        "FAILED",
        "CANCELED",
        "CANCELLING"
      ],
      "description": "Current job status"
    },
    "createTime": {
      "type": "string",
      "format": "date-time"
    },
    "finishTime": {
      "type": "string",
      "format": "date-time"
    }
  }
}