Instabug (Luciq) · Schema

Luciq App Review

An app review captured through a store, native, or custom prompt and surfaced via the Luciq MCP Server. Filterable by rating, version, country, device, prompt type, and OS.

Agentic AIAPMApplication Performance MonitoringBug ReportingCrash ReportingMCPMobileMobile ObservabilityObservabilitySession Replay

Properties

Name Type Description
id string
rating integer
title string
body string
country string ISO 3166-1 alpha-2 country code.
app_version string
device string
os string
prompt_type string
submitted_at string
View JSON Schema on GitHub

JSON Schema

instabug-review-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instabug/main/json-schema/instabug-review-schema.json",
  "title": "Luciq App Review",
  "description": "An app review captured through a store, native, or custom prompt and surfaced via the Luciq MCP Server. Filterable by rating, version, country, device, prompt type, and OS.",
  "type": "object",
  "required": ["id", "rating"],
  "properties": {
    "id": { "type": "string" },
    "rating": { "type": "integer", "minimum": 1, "maximum": 5 },
    "title": { "type": "string" },
    "body": { "type": "string" },
    "country": { "type": "string", "description": "ISO 3166-1 alpha-2 country code." },
    "app_version": { "type": "string" },
    "device": { "type": "string" },
    "os": { "type": "string", "enum": ["ios", "android"] },
    "prompt_type": { "type": "string", "enum": ["store", "native", "custom"] },
    "submitted_at": { "type": "string", "format": "date-time" }
  }
}