Apache Airflow · Schema

FastAPIRootMiddlewareResponse

Serializer for Plugin FastAPI root middleware responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
middleware string
name string
View JSON Schema on GitHub

JSON Schema

airflow-fast-api-root-middleware-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-fast-api-root-middleware-response-schema.json",
  "title": "FastAPIRootMiddlewareResponse",
  "description": "Serializer for Plugin FastAPI root middleware responses.",
  "type": "object",
  "properties": {
    "middleware": {
      "type": "string",
      "title": "Middleware"
    },
    "name": {
      "type": "string",
      "title": "Name"
    }
  },
  "required": [
    "middleware",
    "name"
  ],
  "additionalProperties": true
}