Apache Airflow · Schema

StructuredLogMessage

An individual log message.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
timestamp string
event string
View JSON Schema on GitHub

JSON Schema

airflow-structured-log-message-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-structured-log-message-schema.json",
  "title": "StructuredLogMessage",
  "description": "An individual log message.",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "title": "Timestamp"
    },
    "event": {
      "type": "string",
      "title": "Event"
    }
  },
  "required": [
    "event"
  ],
  "additionalProperties": true
}