PostHog · Schema

LastEvent

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
distinct_id string
properties string
timestamp string
uuid string
View JSON Schema on GitHub

JSON Schema

posthog-lastevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LastEvent",
  "title": "LastEvent",
  "additionalProperties": false,
  "properties": {
    "distinct_id": {
      "title": "Distinct Id",
      "type": "string"
    },
    "properties": {
      "type": "string",
      "title": "Properties"
    },
    "timestamp": {
      "title": "Timestamp",
      "type": "string"
    },
    "uuid": {
      "title": "Uuid",
      "type": "string"
    }
  },
  "required": [
    "distinct_id",
    "properties",
    "timestamp",
    "uuid"
  ],
  "type": "object"
}