Apache Airflow · Schema

EventLogCollectionResponse

Event Log Collection Response.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
event_logs array
total_entries integer
View JSON Schema on GitHub

JSON Schema

airflow-event-log-collection-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-event-log-collection-response-schema.json",
  "title": "EventLogCollectionResponse",
  "description": "Event Log Collection Response.",
  "type": "object",
  "properties": {
    "event_logs": {
      "items": {
        "$ref": "#/components/schemas/EventLogResponse"
      },
      "type": "array",
      "title": "Event Logs"
    },
    "total_entries": {
      "type": "integer",
      "title": "Total Entries"
    }
  },
  "required": [
    "event_logs",
    "total_entries"
  ]
}