TaskInstanceReference schema from Apache Airflow API
{ "$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" } } }