Typesense · Schema

AnalyticsEvent

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
type string Event type.
name string Event name.
data object Event data payload.
timestamp integer Unix timestamp of the event.
View JSON Schema on GitHub

JSON Schema

typesense-analyticsevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnalyticsEvent",
  "title": "AnalyticsEvent",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Event type."
    },
    "name": {
      "type": "string",
      "description": "Event name."
    },
    "data": {
      "type": "object",
      "description": "Event data payload."
    },
    "timestamp": {
      "type": "integer",
      "format": "int64",
      "description": "Unix timestamp of the event."
    }
  }
}