Apache Airflow · JSON Structure

Airflow Plugin Import Error Collection Response Structure

Plugin Import Error Collection serializer.

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

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