firewall_bypass

Criteria specifying when the current rate limit should be bypassed. You can specify that the rate limit should not apply to one or more URLs.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-firewall-bypass-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/firewall_bypass",
  "title": "firewall_bypass",
  "description": "Criteria specifying when the current rate limit should be bypassed. You can specify that the rate limit should not apply to one or more URLs.",
  "items": {
    "properties": {
      "name": {
        "enum": [
          "url"
        ],
        "example": "url",
        "type": "string"
      },
      "value": {
        "description": "The URL to bypass.",
        "example": "api.example.com/*",
        "type": "string"
      }
    },
    "type": "object"
  },
  "type": "array"
}