Payload schema
configobject
circuitBreakerobjectoptional
burstCapacityinteger
refillRatePerMinuteinteger
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"config": {
"type": "object",
"properties": {
"circuitBreaker": {
"type": "object",
"properties": {
"burstCapacity": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
},
"refillRatePerMinute": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
}
},
"required": [
"burstCapacity",
"refillRatePerMinute"
]
}
}
}
},
"required": [
"config"
]
}