Apache Airflow · Schema

PluginCollectionItem

A plugin Item. *New in version 2.1.0*

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
appbuilder_menu_items array The Flask Appbuilder menu items
appbuilder_views array The appuilder views
executors array The plugin executors
flask_blueprints array The flask blueprints
global_operator_extra_links array The global operator extra links
hooks array The plugin hooks
macros array The plugin macros
name string The name of the plugin
operator_extra_links array Operator extra links
source string The plugin source
View JSON Schema on GitHub

JSON Schema

openapi.yaml-plugin-collection-item-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-plugin-collection-item-schema.json",
  "title": "PluginCollectionItem",
  "description": "A plugin Item.\n\n*New in version 2.1.0*\n",
  "type": "object",
  "properties": {
    "appbuilder_menu_items": {
      "description": "The Flask Appbuilder menu items",
      "items": {
        "nullable": true,
        "type": "object"
      },
      "type": "array"
    },
    "appbuilder_views": {
      "description": "The appuilder views",
      "items": {
        "nullable": true,
        "type": "object"
      },
      "type": "array"
    },
    "executors": {
      "description": "The plugin executors",
      "items": {
        "nullable": true,
        "type": "string"
      },
      "type": "array"
    },
    "flask_blueprints": {
      "description": "The flask blueprints",
      "items": {
        "nullable": true,
        "type": "object"
      },
      "type": "array"
    },
    "global_operator_extra_links": {
      "description": "The global operator extra links",
      "items": {
        "nullable": true,
        "type": "object"
      },
      "type": "array"
    },
    "hooks": {
      "description": "The plugin hooks",
      "items": {
        "nullable": true,
        "type": "string"
      },
      "type": "array"
    },
    "macros": {
      "description": "The plugin macros",
      "items": {
        "nullable": true,
        "type": "object"
      },
      "type": "array"
    },
    "name": {
      "description": "The name of the plugin",
      "type": "string"
    },
    "operator_extra_links": {
      "description": "Operator extra links",
      "items": {
        "nullable": true,
        "type": "object"
      },
      "type": "array"
    },
    "source": {
      "description": "The plugin source",
      "nullable": true,
      "type": "string"
    }
  }
}