LogRocket · Schema

SessionHighlight

Highlights for an individual session.

Session ReplayProduct AnalyticsFrontend MonitoringLoggingErrors

Properties

Name Type Description
sessionId string The unique identifier for the session.
highlights string Markdown-formatted highlights for this specific session, with links to relevant times.
View JSON Schema on GitHub

JSON Schema

logrocket-sessionhighlight-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionHighlight",
  "title": "SessionHighlight",
  "type": "object",
  "description": "Highlights for an individual session.",
  "properties": {
    "sessionId": {
      "type": "string",
      "description": "The unique identifier for the session."
    },
    "highlights": {
      "type": "string",
      "description": "Markdown-formatted highlights for this specific session, with links to relevant times."
    }
  }
}