Sentry · Schema

DebugFile

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
debugId string
cpuName string
objectName string
symbolType string
size integer
dateCreated string
data object
View JSON Schema on GitHub

JSON Schema

sentry-system-debugfile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DebugFile",
  "title": "DebugFile",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "debugId": {
      "type": "string"
    },
    "cpuName": {
      "type": "string"
    },
    "objectName": {
      "type": "string"
    },
    "symbolType": {
      "type": "string"
    },
    "size": {
      "type": "integer"
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    },
    "data": {
      "type": "object"
    }
  },
  "required": [
    "id"
  ]
}