{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ThrottleSettings",
"title": "ThrottleSettings",
"type": "object",
"properties": {
"burstLimit": {
"allOf": [
{
"$ref": "#/components/schemas/Integer"
},
{
"description": "The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit."
}
]
},
"rateLimit": {
"allOf": [
{
"$ref": "#/components/schemas/Double"
},
{
"description": "The API target request rate limit."
}
]
}
},
"description": " The API request rate limits."
}