Apache Airflow · JSON Structure

Airflow Import Error Collection Response Structure

Import Error Collection Response.

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

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

Properties

import_errors total_entries

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-collection-response-structure.json",
  "name": "ImportErrorCollectionResponse",
  "description": "Import Error Collection Response.",
  "type": "object",
  "properties": {
    "import_errors": {
      "items": {
        "$ref": "#/components/schemas/ImportErrorResponse"
      },
      "type": "array",
      "title": "Import Errors"
    },
    "total_entries": {
      "type": "int32",
      "title": "Total Entries"
    }
  },
  "required": [
    "import_errors",
    "total_entries"
  ]
}