Apache Airflow · Schema

TaskInstanceCollectionResponse

Task instance collection response supporting both offset and cursor pagination. A single flat model is used instead of a discriminated union (``Annotated[Offset | Cursor, Field(discriminator=...)]``) because the OpenAPI ``oneOf`` + ``discriminator`` construct is not handled correctly by ``@hey-api/openapi-ts`` / ``@7nohe/openapi-react-query-codegen``: return types degrade to ``unknown`` in JSDoc and can produce incorrect TypeScript types (see hey-api/openapi-ts#1613, #3270).

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
task_instances array
total_entries object Total number of matching items. Populated for offset pagination, ``null`` when using cursor pagination.
next_cursor object Token pointing to the next page. Populated for cursor pagination, ``null`` when using offset pagination or when there is no next page.
previous_cursor object Token pointing to the previous page. Populated for cursor pagination, ``null`` when using offset pagination or when on the first page.
View JSON Schema on GitHub