RapidAPI · Schema
RateLimitConfig
API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| gatewayId | string | The gateway this configuration belongs to |
| requestsPerSecond | integer | Maximum requests per second per consumer |
| requestsPerMinute | integer | Maximum requests per minute per consumer |
| requestsPerDay | integer | Maximum requests per day per consumer |
| maxRequestSizeBytes | integer | Maximum request body size in bytes |
| burstLimit | integer | Maximum burst of requests allowed |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RateLimitConfig",
"title": "RateLimitConfig",
"type": "object",
"properties": {
"gatewayId": {
"type": "string",
"description": "The gateway this configuration belongs to"
},
"requestsPerSecond": {
"type": "integer",
"description": "Maximum requests per second per consumer"
},
"requestsPerMinute": {
"type": "integer",
"description": "Maximum requests per minute per consumer"
},
"requestsPerDay": {
"type": "integer",
"description": "Maximum requests per day per consumer"
},
"maxRequestSizeBytes": {
"type": "integer",
"description": "Maximum request body size in bytes"
},
"burstLimit": {
"type": "integer",
"description": "Maximum burst of requests allowed"
}
}
}