Apache Airflow · Schema

FastAPIAppResponse

Serializer for Plugin FastAPI App responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
app string
url_prefix string
name string
View JSON Schema on GitHub

JSON Schema

airflow-fast-api-app-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-app-response-schema.json",
  "title": "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
}