{ "$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" ] }