Sentry · Schema

Installation

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
uuid string
app object
organization object
status string
dateCreated string
View JSON Schema on GitHub

JSON Schema

sentry-system-installation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Installation",
  "title": "Installation",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid"
    },
    "app": {
      "type": "object",
      "properties": {
        "uuid": {
          "type": "string",
          "format": "uuid"
        },
        "slug": {
          "type": "string"
        }
      }
    },
    "organization": {
      "type": "object",
      "properties": {
        "slug": {
          "type": "string"
        }
      }
    },
    "status": {
      "type": "string"
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "uuid",
    "app"
  ]
}