Apache Airflow · JSON Structure

Openapi.Yaml List Task Instance Form Structure

ListTaskInstanceForm schema from Apache Airflow API

Type: object Properties: 12
ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

ListTaskInstanceForm is a JSON Structure definition published by Apache Airflow, describing 12 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dag_ids duration_gte duration_lte end_date_gte end_date_lte execution_date_gte execution_date_lte pool queue start_date_gte start_date_lte state

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-structure/openapi.yaml-list-task-instance-form-structure.json",
  "name": "ListTaskInstanceForm",
  "description": "ListTaskInstanceForm schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "dag_ids": {
      "description": "Return objects with specific DAG IDs.\nThe value can be repeated to retrieve multiple matching values (OR condition).",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "duration_gte": {
      "description": "Returns objects greater than or equal to the specified values.\n\nThis can be combined with duration_lte parameter to receive only the selected period.\n",
      "type": "number"
    },
    "duration_lte": {
      "description": "Returns objects less than or equal to the specified values.\n\nThis can be combined with duration_gte parameter to receive only the selected range.\n",
      "type": "number"
    },
    "end_date_gte": {
      "description": "Returns objects greater or equal the specified date.\n\nThis can be combined with start_date_lte parameter to receive only the selected period.\n",
      "format": "date-time",
      "type": "string"
    },
    "end_date_lte": {
      "description": "Returns objects less than or equal to the specified date.\n\nThis can be combined with start_date_gte parameter to receive only the selected period.\n",
      "format": "date-time",
      "type": "string"
    },
    "execution_date_gte": {
      "description": "Returns objects greater or equal to the specified date.\n\nThis can be combined with execution_date_lte parameter to receive only the selected period.\n",
      "format": "date-time",
      "type": "string"
    },
    "execution_date_lte": {
      "description": "Returns objects less than or equal to the specified date.\n\nThis can be combined with execution_date_gte parameter to receive only the selected period.\n",
      "format": "date-time",
      "type": "string"
    },
    "pool": {
      "description": "The value can be repeated to retrieve multiple matching values (OR condition).",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "queue": {
      "description": "The value can be repeated to retrieve multiple matching values (OR condition).",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "start_date_gte": {
      "description": "Returns objects greater or equal the specified date.\n\nThis can be combined with start_date_lte parameter to receive only the selected period.\n",
      "format": "date-time",
      "type": "string"
    },
    "start_date_lte": {
      "description": "Returns objects less or equal the specified date.\n\nThis can be combined with start_date_gte parameter to receive only the selected period.\n",
      "format": "date-time",
      "type": "string"
    },
    "state": {
      "description": "The value can be repeated to retrieve multiple matching values (OR condition).",
      "items": {
        "$ref": "#/components/schemas/TaskState"
      },
      "type": "array"
    }
  }
}