Apache Airflow · JSON Structure

Airflow Fast Api App Response Structure

Serializer for Plugin FastAPI App responses.

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

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

Properties

app url_prefix name

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-fast-api-app-response-structure.json",
  "name": "FastAPIAppResponse",
  "description": "Serializer for Plugin FastAPI App responses.",
  "type": "object",
  "properties": {
    "app": {
      "type": "string",
      "title": "App"
    },
    "url_prefix": {
      "type": "string",
      "title": "Url Prefix"
    },
    "name": {
      "type": "string",
      "title": "Name"
    }
  },
  "required": [
    "app",
    "url_prefix",
    "name"
  ],
  "additionalProperties": true
}