PostHog · Schema
ActivityLog
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| user | object | |
| unread | boolean | is the date of this log item newer than the user's bookmark |
| organization_id | string | |
| was_impersonated | boolean | |
| is_system | boolean | |
| client | string | |
| activity | string | |
| item_id | string | |
| scope | string | |
| detail | object | |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ActivityLog",
"title": "ActivityLog",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"user": {
"$ref": "#/components/schemas/UserBasic"
},
"unread": {
"type": "boolean",
"description": "is the date of this log item newer than the user's bookmark",
"readOnly": true
},
"organization_id": {
"type": "string",
"format": "uuid",
"nullable": true
},
"was_impersonated": {
"type": "boolean",
"nullable": true
},
"is_system": {
"type": "boolean",
"nullable": true
},
"client": {
"type": "string",
"nullable": true,
"maxLength": 32
},
"activity": {
"type": "string",
"maxLength": 79
},
"item_id": {
"type": "string",
"nullable": true,
"maxLength": 72
},
"scope": {
"type": "string",
"maxLength": 79
},
"detail": {
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time"
}
},
"required": [
"activity",
"id",
"scope",
"unread",
"user"
]
}