PostHog · Schema

SurveyGlobalStatsResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
stats object Event counts keyed by event name (survey shown, survey dismissed, survey sent).
rates object Calculated response and dismissal rates.
View JSON Schema on GitHub

JSON Schema

posthog-surveyglobalstatsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveyGlobalStatsResponse",
  "title": "SurveyGlobalStatsResponse",
  "type": "object",
  "properties": {
    "stats": {
      "type": "object",
      "additionalProperties": true,
      "description": "Event counts keyed by event name (survey shown, survey dismissed, survey sent)."
    },
    "rates": {
      "type": "object",
      "additionalProperties": true,
      "description": "Calculated response and dismissal rates."
    }
  },
  "required": [
    "rates",
    "stats"
  ]
}