Instabug (Luciq) · Schema

Luciq Crash

A grouped crash entity surfaced by the Luciq MCP Server. Groups together individual crash occurrences (see Occurrence) by similarity, with frequency, affected-user, severity, and root-cause hints.

Agentic AIAPMApplication Performance MonitoringBug ReportingCrash ReportingMCPMobileMobile ObservabilityObservabilitySession Replay

Properties

Name Type Description
number integer Per-application crash number.
title string
first_seen string
last_seen string
occurrence_count integer
affected_users integer
status string
severity string
cause string
app_version string
os_version string
device string
current_view string
View JSON Schema on GitHub

JSON Schema

instabug-crash-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instabug/main/json-schema/instabug-crash-schema.json",
  "title": "Luciq Crash",
  "description": "A grouped crash entity surfaced by the Luciq MCP Server. Groups together individual crash occurrences (see Occurrence) by similarity, with frequency, affected-user, severity, and root-cause hints.",
  "type": "object",
  "required": ["number", "title"],
  "properties": {
    "number": { "type": "integer", "description": "Per-application crash number." },
    "title": { "type": "string" },
    "first_seen": { "type": "string", "format": "date-time" },
    "last_seen": { "type": "string", "format": "date-time" },
    "occurrence_count": { "type": "integer", "minimum": 0 },
    "affected_users": { "type": "integer", "minimum": 0 },
    "status": {
      "type": "string",
      "enum": ["new", "in-progress", "resolved", "ignored"]
    },
    "severity": { "type": "string" },
    "cause": { "type": "string" },
    "app_version": { "type": "string" },
    "os_version": { "type": "string" },
    "device": { "type": "string" },
    "current_view": { "type": "string" }
  }
}