Apache Airflow · Schema

DAGWarningResponse

DAG Warning serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
dag_id string
warning_type object
message string
timestamp string
dag_display_name string
View JSON Schema on GitHub

JSON Schema

airflow-dag-warning-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-dag-warning-response-schema.json",
  "title": "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": "string",
      "format": "date-time",
      "title": "Timestamp"
    },
    "dag_display_name": {
      "type": "string",
      "title": "Dag Display Name"
    }
  },
  "required": [
    "dag_id",
    "warning_type",
    "message",
    "timestamp",
    "dag_display_name"
  ]
}