Apache Airflow · JSON Structure

Airflow Dag Warning Response Structure

DAG Warning serializer for responses.

Type: object Properties: 5 Required: 5
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

DAGWarningResponse is a JSON Structure definition published by Apache Airflow, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dag_id warning_type message timestamp dag_display_name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-dag-warning-response-structure.json",
  "name": "DAGWarningResponse",
  "description": "DAG Warning serializer for responses.",
  "type": "object",
  "properties": {
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "warning_type": {
      "$ref": "#/components/schemas/DagWarningType"
    },
    "message": {
      "type": "string",
      "title": "Message"
    },
    "timestamp": {
      "type": "datetime",
      "title": "Timestamp"
    },
    "dag_display_name": {
      "type": "string",
      "title": "Dag Display Name"
    }
  },
  "required": [
    "dag_id",
    "warning_type",
    "message",
    "timestamp",
    "dag_display_name"
  ]
}