Apache Airflow · JSON Structure

Airflow Import Error Response Structure

Import Error Response.

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

ImportErrorResponse 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

import_error_id timestamp filename bundle_name stack_trace

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-import-error-response-structure.json",
  "name": "ImportErrorResponse",
  "description": "Import Error Response.",
  "type": "object",
  "properties": {
    "import_error_id": {
      "type": "int32",
      "title": "Import Error Id"
    },
    "timestamp": {
      "type": "datetime",
      "title": "Timestamp"
    },
    "filename": {
      "type": "string",
      "title": "Filename"
    },
    "bundle_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Bundle Name"
    },
    "stack_trace": {
      "type": "string",
      "title": "Stack Trace"
    }
  },
  "required": [
    "import_error_id",
    "timestamp",
    "filename",
    "bundle_name",
    "stack_trace"
  ]
}