[Example `function.json` from v3](https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-error-pages?tabs=fixed-delay%2Cin-process&pivots=programming-language-javascript#retry-examples) ``` { "bindings": [ { .... } ], "retry": { "strategy": "fixedDelay", "maxRetryCount": 4, "delayInterval": "00:00:10" } } ``` We don't have an analogous place for people to put the "retry" properties in v4.