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