PostHog · Schema
PluginLogEntry
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| team_id | integer | |
| plugin_id | integer | |
| plugin_config_id | integer | |
| timestamp | string | |
| source | object | |
| type | object | |
| message | string | |
| instance_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PluginLogEntry",
"title": "PluginLogEntry",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"team_id": {
"type": "integer"
},
"plugin_id": {
"type": "integer"
},
"plugin_config_id": {
"type": "integer"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"source": {
"$ref": "#/components/schemas/PluginLogEntrySourceEnum"
},
"type": {
"$ref": "#/components/schemas/PluginLogEntryTypeEnum"
},
"message": {
"type": "string"
},
"instance_id": {
"type": "string",
"format": "uuid"
}
},
"required": [
"id",
"instance_id",
"message",
"plugin_config_id",
"plugin_id",
"source",
"team_id",
"timestamp",
"type"
]
}