Amazon API Gateway · Schema

QuotaSettings

QuotaSettings schema from Amazon API Gateway v1 API

API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Properties

Name Type Description
limit integer Maximum number of requests in the period.
period string Time period (DAY, WEEK, MONTH).
View JSON Schema on GitHub

JSON Schema

v1-quota-settings-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Maximum number of requests in the period.",
      "example": 24
    },
    "period": {
      "type": "string",
      "enum": [
        "DAY",
        "WEEK",
        "MONTH"
      ],
      "description": "Time period (DAY, WEEK, MONTH).",
      "example": "DAY"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-schema/v1-quota-settings-schema.json",
  "title": "QuotaSettings",
  "description": "QuotaSettings schema from Amazon API Gateway v1 API"
}