PostHog · Schema
SuggestedQuestionsQuery
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| kind | string | |
| modifiers | object | Modifiers used when performing the query |
| response | object | |
| tags | object | |
| version | number | version of the node, used for schema migrations |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SuggestedQuestionsQuery",
"title": "SuggestedQuestionsQuery",
"additionalProperties": false,
"properties": {
"kind": {
"default": "SuggestedQuestionsQuery",
"title": "Kind",
"type": "string",
"enum": [
"SuggestedQuestionsQuery"
]
},
"modifiers": {
"default": null,
"description": "Modifiers used when performing the query",
"allOf": [
{
"$ref": "#/components/schemas/HogQLQueryModifiers"
}
],
"nullable": true
},
"response": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/SuggestedQuestionsQueryResponse"
}
],
"nullable": true
},
"tags": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/QueryLogTags"
}
],
"nullable": true
},
"version": {
"default": null,
"description": "version of the node, used for schema migrations",
"title": "Version",
"type": "number",
"nullable": true
}
},
"type": "object"
}