PostHog · Schema
QueryLogTags
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the query, preferably unique. For example web_analytics_vitals |
| productKey | string | Product responsible for this query. Use string, there's no need to churn the Schema when we add a new product * |
| scene | string | Scene where this query is shown in the UI. Use string, there's no need to churn the Schema when we add a new Scene * |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QueryLogTags",
"title": "QueryLogTags",
"additionalProperties": false,
"properties": {
"name": {
"default": null,
"description": "Name of the query, preferably unique. For example web_analytics_vitals",
"title": "Name",
"type": "string",
"nullable": true
},
"productKey": {
"default": null,
"description": "Product responsible for this query. Use string, there's no need to churn the Schema when we add a new product *",
"title": "Productkey",
"type": "string",
"nullable": true
},
"scene": {
"default": null,
"description": "Scene where this query is shown in the UI. Use string, there's no need to churn the Schema when we add a new Scene *",
"title": "Scene",
"type": "string",
"nullable": true
}
},
"type": "object"
}