{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-structure/argo-workflows-parameter-structure.json", "name": "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" } } }