LogRocket · Schema

DataExportResponse

Paginated response containing exported session data file URLs.

Session ReplayProduct AnalyticsFrontend MonitoringLoggingErrors

Properties

Name Type Description
cursor string Cursor value for retrieving the next page of results. Treat as a string even though it may appear numeric.
sessions array Array of exported session records with download URLs.
View JSON Schema on GitHub

JSON Schema

logrocket-dataexportresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataExportResponse",
  "title": "DataExportResponse",
  "type": "object",
  "description": "Paginated response containing exported session data file URLs.",
  "properties": {
    "cursor": {
      "type": "string",
      "description": "Cursor value for retrieving the next page of results. Treat as a string even though it may appear numeric."
    },
    "sessions": {
      "type": "array",
      "description": "Array of exported session records with download URLs.",
      "items": {
        "$ref": "#/components/schemas/ExportedSession"
      }
    }
  }
}