DAG details. For details see: (airflow.models.DAG)[https://airflow.apache.org/docs/apache-airflow/stable/_api/airflow/models/index.html#airflow.models.DAG]
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | The ID of the DAG. | [optional] [readonly] |
| root_dag_id | str, none_type | If the DAG is SubDAG then it is the top level DAG identifier. Otherwise, nulll. | [optional] [readonly] |
| is_paused | bool, none_type | Whether the DAG is paused. | [optional] |
| is_subdag | bool | Whether the DAG is SubDAG. | [optional] [readonly] |
| fileloc | str | The absolute path to the file. | [optional] [readonly] |
| file_token | str | The key containing the encrypted path to the file. Encryption and decryption take place only on the server. This prevents the client from reading an non-DAG file. This also ensures API extensibility, because the format of encrypted data may change. | [optional] [readonly] |
| owners | [str] | [optional] [readonly] | |
| description | str, none_type | User-provided DAG description, which can consist of several sentences or paragraphs that describe DAG contents. | [optional] [readonly] |
| schedule_interval | ScheduleInterval | [optional] | |
| tags | [Tag], none_type | List of tags. | [optional] [readonly] |
| timezone | str | [optional] | |
| catchup | bool | [optional] [readonly] | |
| orientation | str | [optional] [readonly] | |
| concurrency | float | [optional] [readonly] | |
| start_date | datetime, none_type | [optional] [readonly] | |
| dag_run_timeout | TimeDelta | [optional] | |
| doc_md | str, none_type | [optional] [readonly] | |
| default_view | str | [optional] [readonly] | |
| params | {str: (bool, date, datetime, dict, float, int, list, str, none_type)} | [optional] [readonly] | |
| any string name | bool, date, datetime, dict, float, int, list, str, none_type | any string name can be used but the value must be the correct type | [optional] |