Apache SeaTunnel · Schema

JobSubmitRequest

Request to submit a SeaTunnel job

Data IntegrationETLELTBatchStreamingApacheOpen Source

Properties

Name Type Description
jobContent string SeaTunnel job configuration in JSON or HOCON format
jobName string Optional job name
isStartWithSavePoint boolean Whether to start from a savepoint
View JSON Schema on GitHub

JSON Schema

apache-seatunnel-job-submit-request-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-submit-request-schema.json",
  "title": "JobSubmitRequest",
  "description": "Request to submit a SeaTunnel job",
  "type": "object",
  "properties": {
    "jobContent": {
      "type": "string",
      "description": "SeaTunnel job configuration in JSON or HOCON format"
    },
    "jobName": {
      "type": "string",
      "description": "Optional job name"
    },
    "isStartWithSavePoint": {
      "type": "boolean",
      "description": "Whether to start from a savepoint"
    }
  },
  "required": [
    "jobContent"
  ]
}