Sentry · Schema

UptimeMonitor

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
name string
url string
status string
intervalSeconds integer
projectSlug string
dateCreated string
View JSON Schema on GitHub

JSON Schema

sentry-system-uptimemonitor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UptimeMonitor",
  "title": "UptimeMonitor",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "status": {
      "type": "string"
    },
    "intervalSeconds": {
      "type": "integer"
    },
    "projectSlug": {
      "type": "string"
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "name",
    "url"
  ]
}