FullStory · Schema

SessionList

List of session replay URLs for a user

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
sessions array Array of session objects with replay URLs
View JSON Schema on GitHub

JSON Schema

fullstory-sessionlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionList",
  "title": "SessionList",
  "type": "object",
  "description": "List of session replay URLs for a user",
  "properties": {
    "sessions": {
      "type": "array",
      "description": "Array of session objects with replay URLs",
      "items": {
        "$ref": "#/components/schemas/Session"
      }
    }
  }
}