Sentry · Schema

CheckIn

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
status string
duration integer Duration in milliseconds.
dateCreated string
environment string
View JSON Schema on GitHub

JSON Schema

sentry-system-checkin-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CheckIn",
  "title": "CheckIn",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "ok",
        "error",
        "in_progress",
        "missed",
        "timeout"
      ]
    },
    "duration": {
      "type": "integer",
      "nullable": true,
      "description": "Duration in milliseconds."
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    },
    "environment": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "status",
    "dateCreated"
  ]
}