Instabug (Luciq) · Schema

Luciq Crash Occurrence

A single instance of a crash captured on a specific device/session. Identified by a ULID and carries full environmental context: device, OS, memory/storage, app status, user identity, and a pointer to the underlying log payload.

Agentic AIAPMApplication Performance MonitoringBug ReportingCrash ReportingMCPMobileMobile ObservabilityObservabilitySession Replay

Properties

Name Type Description
ulid string ULID identifying this specific occurrence.
crash_number integer
timestamp string
device string
os string
os_version string
app_version string
memory_mb integer
storage_mb integer
app_status string
user_id string
log_url string
View JSON Schema on GitHub

JSON Schema

instabug-occurrence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instabug/main/json-schema/instabug-occurrence-schema.json",
  "title": "Luciq Crash Occurrence",
  "description": "A single instance of a crash captured on a specific device/session. Identified by a ULID and carries full environmental context: device, OS, memory/storage, app status, user identity, and a pointer to the underlying log payload.",
  "type": "object",
  "required": ["ulid"],
  "properties": {
    "ulid": { "type": "string", "description": "ULID identifying this specific occurrence." },
    "crash_number": { "type": "integer" },
    "timestamp": { "type": "string", "format": "date-time" },
    "device": { "type": "string" },
    "os": { "type": "string" },
    "os_version": { "type": "string" },
    "app_version": { "type": "string" },
    "memory_mb": { "type": "integer", "minimum": 0 },
    "storage_mb": { "type": "integer", "minimum": 0 },
    "app_status": {
      "type": "string",
      "enum": ["foreground", "background"]
    },
    "user_id": { "type": "string" },
    "log_url": { "type": "string", "format": "uri" }
  }
}