PostHog · Schema
DashboardTemplate
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| template_name | string | |
| dashboard_description | string | |
| dashboard_filters | object | |
| tags | array | |
| tiles | object | |
| variables | object | |
| deleted | boolean | |
| created_at | string | |
| created_by | object | |
| image_url | string | |
| team_id | integer | |
| scope | object | |
| availability_contexts | array | |
| is_featured | boolean | Manually curated; used to highlight templates in the UI. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DashboardTemplate",
"title": "DashboardTemplate",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"template_name": {
"type": "string",
"nullable": true,
"maxLength": 400
},
"dashboard_description": {
"type": "string",
"nullable": true,
"maxLength": 400
},
"dashboard_filters": {
"nullable": true
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 255
},
"nullable": true
},
"tiles": {
"nullable": true
},
"variables": {
"nullable": true
},
"deleted": {
"type": "boolean",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
},
"image_url": {
"type": "string",
"nullable": true,
"maxLength": 8201
},
"team_id": {
"type": "integer",
"nullable": true,
"readOnly": true
},
"scope": {
"nullable": true,
"oneOf": [
{
"$ref": "#/components/schemas/DashboardTemplateScopeEnum"
},
{
"$ref": "#/components/schemas/BlankEnum"
},
{
"$ref": "#/components/schemas/NullEnum"
}
]
},
"availability_contexts": {
"type": "array",
"items": {
"type": "string",
"maxLength": 255
},
"nullable": true
},
"is_featured": {
"type": "boolean",
"description": "Manually curated; used to highlight templates in the UI."
}
},
"required": [
"created_at",
"created_by",
"id",
"team_id"
]
}