{ "$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-event-log-collection-schema.json", "title": "EventLogCollection", "description": "Collection of event logs.\n\n*Changed in version 2.1.0*: 'total_entries' field is added.\n", "type": "object", "allOf": [ { "properties": { "event_logs": { "items": { "$ref": "#/components/schemas/EventLog" }, "type": "array" } }, "type": "object" }, { "$ref": "#/components/schemas/CollectionInfo" } ] }