LogRocket · Schema

HighlightsResponse

Response containing Galileo AI highlights status and results.

Session ReplayProduct AnalyticsFrontend MonitoringLoggingErrors

Properties

Name Type Description
requestID string Unique identifier for the highlights request.
appID string The application ID associated with the request.
status string Current status of the highlights generation.
result object The highlights result, or null if still pending.
View JSON Schema on GitHub

JSON Schema

logrocket-highlightsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HighlightsResponse",
  "title": "HighlightsResponse",
  "type": "object",
  "description": "Response containing Galileo AI highlights status and results.",
  "properties": {
    "requestID": {
      "type": "string",
      "description": "Unique identifier for the highlights request."
    },
    "appID": {
      "type": "string",
      "description": "The application ID associated with the request."
    },
    "status": {
      "type": "string",
      "description": "Current status of the highlights generation.",
      "enum": [
        "PENDING",
        "COMPLETE",
        "FAILED"
      ]
    },
    "result": {
      "description": "The highlights result, or null if still pending.",
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/HighlightsResult"
        }
      ]
    }
  }
}