{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-structure/argo-workflows-retry-strategy-structure.json", "name": "RetryStrategy", "description": "Strategy for retrying failed steps", "type": "object", "properties": { "limit": { "type": "int32", "description": "Maximum number of retries" }, "retryPolicy": { "type": "string", "enum": [ "Always", "OnFailure", "OnError", "OnTransientError" ] }, "backoff": { "type": "object", "properties": { "duration": { "type": "string" }, "factor": { "type": "int32" }, "maxDuration": { "type": "string" } } } } }