get_dag_details
Retrieve simplified DAG information from Apache Airflow to understand workflow structure and configuration details for monitoring and management.
Instructions
Get a simplified representation of DAG
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes | ||
| fields | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
},
"fields": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
}
},
"required": [
"dag_id"
],
"type": "object"
}