{ "$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" }