Apache Airflow · JSON Structure

Airflow Pool Response Structure

Pool serializer for responses.

Type: object Properties: 11 Required: 10
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

PoolResponse is a JSON Structure definition published by Apache Airflow, describing 11 properties, of which 10 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name slots description include_deferred occupied_slots running_slots queued_slots scheduled_slots open_slots deferred_slots team_name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-pool-response-structure.json",
  "name": "PoolResponse",
  "description": "Pool serializer for responses.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "slots": {
      "type": "int32",
      "minimum": -1.0,
      "title": "Slots",
      "description": "Number of slots. Use -1 for unlimited."
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description"
    },
    "include_deferred": {
      "type": "boolean",
      "title": "Include Deferred"
    },
    "occupied_slots": {
      "type": "int32",
      "title": "Occupied Slots"
    },
    "running_slots": {
      "type": "int32",
      "title": "Running Slots"
    },
    "queued_slots": {
      "type": "int32",
      "title": "Queued Slots"
    },
    "scheduled_slots": {
      "type": "int32",
      "title": "Scheduled Slots"
    },
    "open_slots": {
      "type": "int32",
      "title": "Open Slots"
    },
    "deferred_slots": {
      "type": "int32",
      "title": "Deferred Slots"
    },
    "team_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Team Name"
    }
  },
  "required": [
    "name",
    "slots",
    "include_deferred",
    "occupied_slots",
    "running_slots",
    "queued_slots",
    "scheduled_slots",
    "open_slots",
    "deferred_slots",
    "team_name"
  ]
}