Apache Airflow · Schema

ConnectionTestResponse

Connection Test serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
status boolean
message string
View JSON Schema on GitHub

JSON Schema

airflow-connection-test-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-connection-test-response-schema.json",
  "title": "ConnectionTestResponse",
  "description": "Connection Test serializer for responses.",
  "type": "object",
  "properties": {
    "status": {
      "type": "boolean",
      "title": "Status"
    },
    "message": {
      "type": "string",
      "title": "Message"
    }
  },
  "required": [
    "status",
    "message"
  ]
}