Apache Airflow · JSON Structure

Openapi.Yaml Job Structure

Job schema from Apache Airflow API

Type: object Properties: 10
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

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

Properties

dag_id end_date executor_class hostname id job_type latest_heartbeat start_date state unixname

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-airflow/refs/heads/main/json-structure/openapi.yaml-job-structure.json",
  "name": "Job",
  "description": "Job schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "dag_id": {
      "nullable": true,
      "type": "string"
    },
    "end_date": {
      "format": "datetime",
      "nullable": true,
      "type": "string"
    },
    "executor_class": {
      "nullable": true,
      "type": "string"
    },
    "hostname": {
      "nullable": true,
      "type": "string"
    },
    "id": {
      "type": "integer"
    },
    "job_type": {
      "nullable": true,
      "type": "string"
    },
    "latest_heartbeat": {
      "format": "datetime",
      "nullable": true,
      "type": "string"
    },
    "start_date": {
      "format": "datetime",
      "nullable": true,
      "type": "string"
    },
    "state": {
      "nullable": true,
      "type": "string"
    },
    "unixname": {
      "nullable": true,
      "type": "string"
    }
  }
}