Apache SeaTunnel · Schema

JobList

List of SeaTunnel jobs

Data IntegrationETLELTBatchStreamingApacheOpen Source

Properties

Name Type Description
jobs array
total integer
View JSON Schema on GitHub

JSON Schema

apache-seatunnel-job-list-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-list-schema.json",
  "title": "JobList",
  "description": "List of SeaTunnel jobs",
  "type": "object",
  "properties": {
    "jobs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JobInfo"
      }
    },
    "total": {
      "type": "integer"
    }
  }
}