Apache Airflow · JSON Structure

Airflow Pool Body Structure

Pool serializer for post bodies.

Type: object Properties: 5 Required: 2
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

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

Properties

name slots description include_deferred 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-body-structure.json",
  "name": "PoolBody",
  "description": "Pool serializer for post bodies.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 256,
      "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",
      "default": false
    },
    "team_name": {
      "anyOf": [
        {
          "type": "string",
          "maxLength": 50
        },
        {
          "type": "null"
        }
      ],
      "title": "Team Name"
    }
  },
  "required": [
    "name",
    "slots"
  ],
  "additionalProperties": false
}