Apache Airflow · Schema

PluginImportErrorCollectionResponse

Plugin Import Error Collection serializer.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
import_errors array
total_entries integer
View JSON Schema on GitHub

JSON Schema

airflow-plugin-import-error-collection-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-plugin-import-error-collection-response-schema.json",
  "title": "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": "integer",
      "title": "Total Entries"
    }
  },
  "required": [
    "import_errors",
    "total_entries"
  ]
}