{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DatabaseSchemaQuery", "title": "DatabaseSchemaQuery", "additionalProperties": false, "properties": { "connectionId": { "default": null, "description": "Optional direct external data source id for schema introspection", "title": "Connectionid", "type": "string", "nullable": true }, "kind": { "default": "DatabaseSchemaQuery", "title": "Kind", "type": "string", "enum": [ "DatabaseSchemaQuery" ] }, "modifiers": { "default": null, "description": "Modifiers used when performing the query", "allOf": [ { "$ref": "#/components/schemas/HogQLQueryModifiers" } ], "nullable": true }, "response": { "default": null, "allOf": [ { "$ref": "#/components/schemas/DatabaseSchemaQueryResponse" } ], "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" }