Instabug (Luciq) · Schema

Luciq Bug Report

A user-reported bug submitted through the Luciq SDK in-app reporter. Carries reporter contact, categorization, environment, console log, user step breadcrumbs, and attachments for reproduction.

Agentic AIAPMApplication Performance MonitoringBug ReportingCrash ReportingMCPMobileMobile ObservabilityObservabilitySession Replay

Properties

Name Type Description
number integer
title string
reported_at string
status string
priority string
email string
app_version string
device string
categories array
tags array
user_steps array
console_log string
attachments array
View JSON Schema on GitHub

JSON Schema

instabug-bug-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instabug/main/json-schema/instabug-bug-schema.json",
  "title": "Luciq Bug Report",
  "description": "A user-reported bug submitted through the Luciq SDK in-app reporter. Carries reporter contact, categorization, environment, console log, user step breadcrumbs, and attachments for reproduction.",
  "type": "object",
  "required": ["number", "title", "reported_at"],
  "properties": {
    "number": { "type": "integer" },
    "title": { "type": "string" },
    "reported_at": { "type": "string", "format": "date-time" },
    "status": { "type": "string", "enum": ["new", "in-progress", "closed"] },
    "priority": { "type": "string", "enum": ["trivial", "minor", "major", "critical", "blocker"] },
    "email": { "type": "string", "format": "email" },
    "app_version": { "type": "string" },
    "device": { "type": "string" },
    "categories": { "type": "array", "items": { "type": "string" } },
    "tags": { "type": "array", "items": { "type": "string" } },
    "user_steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": { "type": "string" },
          "message": { "type": "string" },
          "timestamp": { "type": "string", "format": "date-time" }
        }
      }
    },
    "console_log": { "type": "string" },
    "attachments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": { "type": "string", "enum": ["image", "video", "file"] },
          "url": { "type": "string", "format": "uri" }
        }
      }
    }
  }
}