Apache Airflow · Schema

DatasetEventCollection

A collection of dataset events. *New in version 2.4.0*

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow
View JSON Schema on GitHub

JSON Schema

openapi.yaml-dataset-event-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-schema/openapi.yaml-dataset-event-collection-schema.json",
  "title": "DatasetEventCollection",
  "description": "A collection of dataset events.\n\n*New in version 2.4.0*\n",
  "type": "object",
  "allOf": [
    {
      "properties": {
        "dataset_events": {
          "items": {
            "$ref": "#/components/schemas/DatasetEvent"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    {
      "$ref": "#/components/schemas/CollectionInfo"
    }
  ]
}