PostHog · Schema
PatchedLogsView
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| short_id | string | |
| name | string | |
| filters | object | Filter criteria — subset of LogsViewerFilters. May contain severityLevels, serviceNames, searchTerm, filterGroup, dateRange, and other keys. |
| pinned | boolean | |
| created_at | string | |
| created_by | object | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedLogsView",
"title": "PatchedLogsView",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"short_id": {
"type": "string",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 400
},
"filters": {
"type": "object",
"additionalProperties": true,
"description": "Filter criteria \u2014 subset of LogsViewerFilters. May contain severityLevels, serviceNames, searchTerm, filterGroup, dateRange, and other keys."
},
"pinned": {
"type": "boolean"
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
}
}
}