Apache Airflow · Schema
ListDagRunsForm
ListDagRunsForm schema from Apache Airflow API
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| dag_ids | array | Return objects with specific DAG IDs. The value can be repeated to retrieve multiple matching values (OR condition). |
| end_date_gte | string | Returns objects greater or equal the specified date. This can be combined with end_date_lte parameter to receive only the selected period. |
| end_date_lte | string | Returns objects less than or equal to the specified date. This can be combined with end_date_gte parameter to receive only the selected period. |
| execution_date_gte | string | Returns objects greater or equal to the specified date. This can be combined with execution_date_lte key to receive only the selected period. |
| execution_date_lte | string | Returns objects less than or equal to the specified date. This can be combined with execution_date_gte key to receive only the selected period. |
| order_by | string | The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0* |
| page_limit | integer | The numbers of items to return. |
| page_offset | integer | The number of items to skip before starting to collect the result set. |
| start_date_gte | string | Returns objects greater or equal the specified date. This can be combined with start_date_lte key to receive only the selected period. |
| start_date_lte | string | Returns objects less or equal the specified date. This can be combined with start_date_gte parameter to receive only the selected period |
| states | array | Return objects with specific states. The value can be repeated to retrieve multiple matching values (OR condition). |