Apache Airflow · JSON Structure

Airflow Provider Response Structure

Provider serializer for responses.

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

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

Properties

package_name description version documentation_url

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-provider-response-structure.json",
  "name": "ProviderResponse",
  "description": "Provider serializer for responses.",
  "type": "object",
  "properties": {
    "package_name": {
      "type": "string",
      "title": "Package Name"
    },
    "description": {
      "type": "string",
      "title": "Description"
    },
    "version": {
      "type": "string",
      "title": "Version"
    },
    "documentation_url": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Documentation Url"
    }
  },
  "required": [
    "package_name",
    "description",
    "version",
    "documentation_url"
  ]
}