Apache Airflow · Schema

PluginImportErrorResponse

Plugin Import Error serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
source string
error string
View JSON Schema on GitHub

JSON Schema

airflow-plugin-import-error-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-response-schema.json",
  "title": "PluginImportErrorResponse",
  "description": "Plugin Import Error serializer for responses.",
  "type": "object",
  "properties": {
    "source": {
      "type": "string",
      "title": "Source"
    },
    "error": {
      "type": "string",
      "title": "Error"
    }
  },
  "required": [
    "source",
    "error"
  ]
}