PostHog · Schema

ActivityLogEntry

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
user object
activity string
scope string
item_id string
detail object
created_at string
View JSON Schema on GitHub

JSON Schema

posthog-activitylogentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActivityLogEntry",
  "title": "ActivityLogEntry",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "user": {
      "type": "object",
      "nullable": true,
      "readOnly": true
    },
    "activity": {
      "type": "string",
      "readOnly": true
    },
    "scope": {
      "type": "string",
      "readOnly": true
    },
    "item_id": {
      "type": "string",
      "readOnly": true
    },
    "detail": {
      "$ref": "#/components/schemas/Detail"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  },
  "required": [
    "activity",
    "created_at",
    "id",
    "item_id",
    "scope",
    "user"
  ]
}