Apache Airflow · Schema

HITLDetailCollection

Schema for a collection of Human-in-the-loop details.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

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

JSON Schema

airflow-hitl-detail-collection-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-hitl-detail-collection-schema.json",
  "title": "HITLDetailCollection",
  "description": "Schema for a collection of Human-in-the-loop details.",
  "type": "object",
  "properties": {
    "hitl_details": {
      "items": {
        "$ref": "#/components/schemas/HITLDetail"
      },
      "type": "array",
      "title": "Hitl Details"
    },
    "total_entries": {
      "type": "integer",
      "title": "Total Entries"
    }
  },
  "required": [
    "hitl_details",
    "total_entries"
  ]
}