{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-hitl-user-schema.json", "title": "HITLUser", "description": "Schema for a Human-in-the-loop users.", "type": "object", "properties": { "id": { "type": "string", "title": "Id" }, "name": { "type": "string", "title": "Name" } }, "required": [ "id", "name" ] }