FullStory · Schema

SessionEvents

Full set of captured events for a session

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
events array Array of events captured during the session
View JSON Schema on GitHub

JSON Schema

fullstory-sessionevents-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionEvents",
  "title": "SessionEvents",
  "type": "object",
  "description": "Full set of captured events for a session",
  "properties": {
    "events": {
      "type": "array",
      "description": "Array of events captured during the session",
      "items": {
        "$ref": "#/components/schemas/SessionEvent"
      }
    }
  }
}