Fastly · Schema

DdosEvent

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
id string
service_id string
status string
started_at string
ended_at string
peak_rps integer
View JSON Schema on GitHub

JSON Schema

fastly-ddosevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DdosEvent",
  "title": "DdosEvent",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "service_id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "mitigated",
        "ended"
      ]
    },
    "started_at": {
      "type": "string",
      "format": "date-time"
    },
    "ended_at": {
      "type": "string",
      "format": "date-time"
    },
    "peak_rps": {
      "type": "integer"
    }
  }
}