Better Stack · Schema

MonitorObject

A single monitor resource following JSON:API format.

IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats

Properties

Name Type Description
id string Unique identifier of the monitor.
type string Resource type identifier.
attributes object
View JSON Schema on GitHub

JSON Schema

better-stack-monitor-object-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-schema/better-stack-monitor-object-schema.json",
  "title": "MonitorObject",
  "description": "A single monitor resource following JSON:API format.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the monitor.",
      "example": "500123"
    },
    "type": {
      "type": "string",
      "description": "Resource type identifier.",
      "example": "monitor"
    },
    "attributes": {
      "$ref": "#/components/schemas/MonitorAttributes"
    }
  }
}