Apache Airflow · Schema

BaseInfoResponse

Base info serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
status object
View JSON Schema on GitHub

JSON Schema

airflow-base-info-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-base-info-response-schema.json",
  "title": "BaseInfoResponse",
  "description": "Base info serializer for responses.",
  "type": "object",
  "properties": {
    "status": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Status"
    }
  },
  "required": [
    "status"
  ]
}