Apache Airflow · Schema

UpdateHITLDetailPayload

Schema for updating the content of a Human-in-the-loop detail.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
chosen_options array
params_input object
View JSON Schema on GitHub

JSON Schema

airflow-update-hitl-detail-payload-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-update-hitl-detail-payload-schema.json",
  "title": "UpdateHITLDetailPayload",
  "description": "Schema for updating the content of a Human-in-the-loop detail.",
  "type": "object",
  "properties": {
    "chosen_options": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "minItems": 1,
      "title": "Chosen Options"
    },
    "params_input": {
      "additionalProperties": true,
      "type": "object",
      "title": "Params Input"
    }
  },
  "required": [
    "chosen_options"
  ]
}