PostHog · Schema

InsightsToolCall

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
query string
insight_type object
View JSON Schema on GitHub

JSON Schema

posthog-insightstoolcall-schema.json Raw ↑
{
  "$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"
  ]
}