Apache SeaTunnel · JSON Structure

Apache Seatunnel Job Info Structure

Summary info for a SeaTunnel job

Type: object Properties: 5
Data IntegrationETLELTBatchStreamingApacheOpen Source

JobInfo is a JSON Structure definition published by Apache SeaTunnel, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

jobId jobName jobStatus createTime finishTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-seatunnel/refs/heads/main/json-structure/apache-seatunnel-job-info-structure.json",
  "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": "datetime"
    },
    "finishTime": {
      "type": "datetime"
    }
  },
  "name": "JobInfo"
}