Inputs for a template
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-workflows-inputs-schema.json", "title": "Inputs", "description": "Inputs for a template", "type": "object", "properties": { "parameters": { "type": "array", "items": { "$ref": "#/components/schemas/Parameter" } }, "artifacts": { "type": "array", "items": { "$ref": "#/components/schemas/Artifact" } } } }