Apache Airflow · Schema

TaskInstanceReference

TaskInstanceReference schema from Apache Airflow API

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
dag_id string The DAG ID.
dag_run_id string The DAG run ID.
execution_date string
task_id string The task ID.
View JSON Schema on GitHub

JSON Schema

openapi.yaml-task-instance-reference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-schema/openapi.yaml-task-instance-reference-schema.json",
  "title": "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"
    }
  }
}