Apache Airflow · Schema

ConnectionCollection

Collection of connections. *Changed in version 2.1.0*: 'total_entries' field is added.

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow
View JSON Schema on GitHub

JSON Schema

openapi.yaml-connection-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-schema/openapi.yaml-connection-collection-schema.json",
  "title": "ConnectionCollection",
  "description": "Collection of connections.\n\n*Changed in version 2.1.0*: 'total_entries' field is added.\n",
  "type": "object",
  "allOf": [
    {
      "properties": {
        "connections": {
          "items": {
            "$ref": "#/components/schemas/ConnectionCollectionItem"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    {
      "$ref": "#/components/schemas/CollectionInfo"
    }
  ]
}