Sentry · Schema

SpikeProtectionAction

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
projects array
dateCreated string
View JSON Schema on GitHub

JSON Schema

sentry-system-spikeprotectionaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpikeProtectionAction",
  "title": "SpikeProtectionAction",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "projects": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "projects"
  ]
}