Resilience4j Retry Configuration
JSON Schema for Resilience4j retry configuration properties.
BulkheadCircuit BreakerFault ToleranceJavaMicroservicesRate LimiterResilienceRetrySpring BootFunctional Programming
Properties
| Name |
Type |
Description |
| resilience4j |
object |
|
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/resilience4j/json-schema/retry-configuration.json",
"title": "Resilience4j Retry Configuration",
"description": "JSON Schema for Resilience4j retry configuration properties.",
"type": "object",
"properties": {
"resilience4j": {
"type": "object",
"properties": {
"retry": {
"type": "object",
"properties": {
"configs": {
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/RetryConfig"
}
},
"instances": {
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/RetryInstance"
}
}
}
}
}
}
},
"$defs": {
"RetryConfig": {
"type": "object",
"properties": {
"maxAttempts": {
"type": "integer",
"default": 3,
"description": "Maximum number of retry attempts."
},
"waitDuration": {
"type": "string",
"default": "500ms",
"description": "Fixed wait duration between retry attempts."
},
"enableExponentialBackoff": {
"type": "boolean",
"default": false,
"description": "Whether exponential backoff is enabled."
},
"exponentialBackoffMultiplier": {
"type": "number",
"default": 2,
"description": "Multiplier for exponential backoff."
},
"enableRandomizedWait": {
"type": "boolean",
"default": false,
"description": "Whether randomized wait is enabled."
},
"randomizedWaitFactor": {
"type": "number",
"default": 0.5,
"description": "Randomization factor for wait duration."
},
"retryExceptions": {
"type": "array",
"items": { "type": "string" },
"description": "List of exception class names that trigger a retry."
},
"ignoreExceptions": {
"type": "array",
"items": { "type": "string" },
"description": "List of exception class names that are ignored."
},
"failAfterMaxAttempts": {
"type": "boolean",
"default": false,
"description": "Whether to throw MaxRetriesExceededException after all attempts."
}
}
},
"RetryInstance": {
"allOf": [
{ "$ref": "#/$defs/RetryConfig" },
{
"type": "object",
"properties": {
"baseConfig": {
"type": "string",
"description": "Name of a shared configuration to inherit from."
}
}
}
]
}
}
}
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/retry-configuration"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no email required.
A second provider on the same verified email joins the account you already have.