Apache Airflow · JSON Structure

Openapi.Yaml Task Instance Reference Structure

TaskInstanceReference schema from Apache Airflow API

Type: object Properties: 4
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

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

Properties

dag_id dag_run_id execution_date task_id

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-task-instance-reference-structure.json",
  "name": "TaskInstanceReference",
  "description": "TaskInstanceReference schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "dag_id": {
      "description": "The DAG ID.",
      "readOnly": true,
      "type": "string"
    },
    "dag_run_id": {
      "description": "The DAG run ID.",
      "readOnly": true,
      "type": "string"
    },
    "execution_date": {
      "format": "datetime",
      "readOnly": true,
      "type": "string"
    },
    "task_id": {
      "description": "The task ID.",
      "readOnly": true,
      "type": "string"
    }
  }
}