{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InsightsToolCall", "title": "InsightsToolCall", "type": "object", "properties": { "query": { "type": "string", "maxLength": 1000 }, "insight_type": { "$ref": "#/components/schemas/InsightTypeEnum" } }, "required": [ "insight_type", "query" ] }