A workflow parameter
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-workflows-parameter-schema.json", "title": "Parameter", "description": "A workflow parameter", "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "default": { "type": "string" }, "enum": { "type": "array", "items": { "type": "string" } }, "description": { "type": "string" }, "globalName": { "type": "string" } } }