FullStory · Schema

SessionEvent

An individual event captured during a session

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
type string The type of event captured
timestamp string Timestamp when the event occurred
data object Event-specific data and properties
View JSON Schema on GitHub

JSON Schema

fullstory-sessionevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionEvent",
  "title": "SessionEvent",
  "type": "object",
  "description": "An individual event captured during a session",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of event captured"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the event occurred"
    },
    "data": {
      "type": "object",
      "description": "Event-specific data and properties",
      "additionalProperties": true
    }
  }
}