{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-argoproj-workflow-v1alpha1-header-schema.json", "title": "io.argoproj.workflow.v1alpha1.Header", "description": "Header indicate a key-value request header to be used when fetching artifacts over HTTP", "type": "object", "properties": { "name": { "description": "Name is the header name", "type": "string" }, "value": { "description": "Value is the literal value to use for the header", "type": "string" } }, "required": [ "name", "value" ] }