{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-v1alpha1-backoff-schema.json",
"title": "v1alpha1Backoff",
"description": "v1alpha1Backoff schema from Argo CD API",
"type": "object",
"properties": {
"duration": {
"type": "string",
"title": "Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. \"2m\", \"1h\")"
},
"factor": {
"type": "integer",
"format": "int64",
"title": "Factor is a factor to multiply the base duration after each failed retry"
},
"maxDuration": {
"type": "string",
"title": "MaxDuration is the maximum amount of time allowed for the backoff strategy"
}
}
}