Umami · JSON Structure

Umami Session Structure

Visitor session record

Type: object Properties: 9
Cookieless TrackingOpen SourcePrivacyWeb AnalyticsWebsite Analytics

Umami Session Structure is a JSON Structure definition published by Umami, describing 9 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

id websiteId browser os device screen language country createdAt

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/umami/refs/heads/main/json-structure/umami-session-structure.json",
  "title": "Session",
  "description": "Visitor session record",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Session identifier"
    },
    "websiteId": {
      "type": "string",
      "description": "Website identifier"
    },
    "browser": {
      "type": "string",
      "description": "Browser name"
    },
    "os": {
      "type": "string",
      "description": "Operating system"
    },
    "device": {
      "type": "string",
      "description": "Device type"
    },
    "screen": {
      "type": "string",
      "description": "Screen resolution"
    },
    "language": {
      "type": "string",
      "description": "Browser language"
    },
    "country": {
      "type": "string",
      "description": "Country code"
    },
    "createdAt": {
      "type": "string",
      "description": "Session start timestamp"
    }
  }
}