Apache Airflow · Schema

ConnectionCollectionResponse

Connection Collection serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
connections array
total_entries integer
View JSON Schema on GitHub

JSON Schema

airflow-connection-collection-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-collection-response-schema.json",
  "title": "ConnectionCollectionResponse",
  "description": "Connection Collection serializer for responses.",
  "type": "object",
  "properties": {
    "connections": {
      "items": {
        "$ref": "#/components/schemas/ConnectionResponse"
      },
      "type": "array",
      "title": "Connections"
    },
    "total_entries": {
      "type": "integer",
      "title": "Total Entries"
    }
  },
  "required": [
    "connections",
    "total_entries"
  ]
}