Outputs from 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-outputs-schema.json", "title": "Outputs", "description": "Outputs from a template", "type": "object", "properties": { "parameters": { "type": "array", "items": { "$ref": "#/components/schemas/Parameter" } }, "artifacts": { "type": "array", "items": { "$ref": "#/components/schemas/Artifact" } }, "result": { "type": "string", "description": "Result output from a script template" }, "exitCode": { "type": "string", "description": "Exit code of the container" } } }