{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HqlSavedQuery", "title": "HqlSavedQuery", "properties": { "id": { "type": "string" }, "organization_id": { "type": "string" }, "name": { "type": "string" }, "sql": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" } }, "required": [ "id", "organization_id", "name", "sql", "created_at", "updated_at" ], "type": "object", "additionalProperties": false }