Apache Airflow · Schema

ImportError

ImportError schema from Apache Airflow API

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
filename string The filename
import_error_id integer The import error ID.
stack_trace string The full stackstrace..
timestamp string The time when this error was created.
View JSON Schema on GitHub

JSON Schema

openapi.yaml-import-error-schema.json Raw ↑
{
  "$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-import-error-schema.json",
  "title": "ImportError",
  "description": "ImportError schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "filename": {
      "description": "The filename",
      "readOnly": true,
      "type": "string"
    },
    "import_error_id": {
      "description": "The import error ID.",
      "readOnly": true,
      "type": "integer"
    },
    "stack_trace": {
      "description": "The full stackstrace..",
      "readOnly": true,
      "type": "string"
    },
    "timestamp": {
      "description": "The time when this error was created.",
      "format": "datetime",
      "readOnly": true,
      "type": "string"
    }
  }
}