New Relic · Schema

CrashSummaryResponse

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
crash_count integer
crash_rate number
supports_crash_data boolean
unresolved_crash_count integer
View JSON Schema on GitHub

JSON Schema

new-relic-crash-summary-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "crash_count": {
      "type": "integer",
      "example": 42
    },
    "crash_rate": {
      "type": "number",
      "format": "float",
      "example": 12.3
    },
    "supports_crash_data": {
      "type": "boolean",
      "example": true
    },
    "unresolved_crash_count": {
      "type": "integer",
      "example": 42
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CrashSummaryResponse"
}