Apache SeaTunnel · JSON Structure

Apache Seatunnel Job Detail Structure

Detailed information about a SeaTunnel job

Type: object Properties: 8
Data IntegrationETLELTBatchStreamingApacheOpen Source

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

Properties

jobId jobName jobStatus jobDag metrics createTime finishTime errorMsg

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-detail-structure.json",
  "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": "datetime"
    },
    "finishTime": {
      "type": "datetime"
    },
    "errorMsg": {
      "type": "string",
      "description": "Error message if job failed"
    }
  },
  "name": "JobDetail"
}