Netlify · Schema

trafficRulesRateLimitConfig

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
algorithm string
window_size integer
window_limit integer
View JSON Schema on GitHub

JSON Schema

netlify-trafficrulesratelimitconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/trafficRulesRateLimitConfig",
  "title": "trafficRulesRateLimitConfig",
  "type": "object",
  "properties": {
    "algorithm": {
      "type": "string",
      "enum": [
        "sliding_window"
      ]
    },
    "window_size": {
      "type": "integer"
    },
    "window_limit": {
      "type": "integer"
    }
  }
}