{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "HttpRetryPolicy", "description": "An object that represents a retry policy. Specify at least one value for at least one of the types of RetryEvents, a value for maxRetries, and a value for perRetryTimeout. Both server-error and gateway-error under httpRetryEvents include the Envoy reset policy. For more information on the reset policy, see the Envoy documentation.", "type": "object", "properties": { "httpRetryEvents": {}, "maxRetries": {}, "perRetryTimeout": {}, "tcpRetryEvents": {} }, "required": [ "maxRetries", "perRetryTimeout" ] }