Sentry · Schema

SeerModel

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
name string
description string
isAvailable boolean
View JSON Schema on GitHub

JSON Schema

sentry-system-seermodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SeerModel",
  "title": "SeerModel",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "isAvailable": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "name"
  ]
}