Fastly · Schema

DdosRule

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
id string
action string
match string
scope string
enabled boolean
View JSON Schema on GitHub

JSON Schema

fastly-ddosrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DdosRule",
  "title": "DdosRule",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "action": {
      "type": "string",
      "enum": [
        "block",
        "challenge",
        "log"
      ]
    },
    "match": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    }
  }
}