Instabug (Luciq) · Schema

Luciq Application

A mobile application registered with Luciq. Returned by list_applications and used as the slug for every other crash, hang, bug, and review query.

Agentic AIAPMApplication Performance MonitoringBug ReportingCrash ReportingMCPMobileMobile ObservabilityObservabilitySession Replay

Properties

Name Type Description
slug string Stable identifier for the application; used as the {slug} path parameter.
name string
platform string
token string Application token used to query reviews.
View JSON Schema on GitHub

JSON Schema

instabug-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instabug/main/json-schema/instabug-application-schema.json",
  "title": "Luciq Application",
  "description": "A mobile application registered with Luciq. Returned by list_applications and used as the slug for every other crash, hang, bug, and review query.",
  "type": "object",
  "required": ["slug", "name", "platform"],
  "properties": {
    "slug": { "type": "string", "description": "Stable identifier for the application; used as the {slug} path parameter." },
    "name": { "type": "string" },
    "platform": {
      "type": "string",
      "enum": ["ios", "android", "react_native", "flutter"]
    },
    "token": { "type": "string", "description": "Application token used to query reviews." }
  }
}