Apache Airflow · JSON Structure

Airflow Hitl Detail Response Structure

Response of updating a Human-in-the-loop detail.

Type: object Properties: 4 Required: 3
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

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

Properties

responded_by responded_at chosen_options params_input

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-hitl-detail-response-structure.json",
  "name": "HITLDetailResponse",
  "description": "Response of updating a Human-in-the-loop detail.",
  "type": "object",
  "properties": {
    "responded_by": {
      "$ref": "#/components/schemas/HITLUser"
    },
    "responded_at": {
      "type": "datetime",
      "title": "Responded At"
    },
    "chosen_options": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "minItems": 1,
      "title": "Chosen Options"
    },
    "params_input": {
      "additionalProperties": true,
      "type": "object",
      "title": "Params Input"
    }
  },
  "required": [
    "responded_by",
    "responded_at",
    "chosen_options"
  ]
}