PostHog · Schema

SurveyEventsConditionSchema

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
repeatedActivation boolean Whether to show the survey every time one of the events is triggered (true), or just once (false).
values array Array of event names that trigger the survey.
View JSON Schema on GitHub

JSON Schema

posthog-surveyeventsconditionschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveyEventsConditionSchema",
  "title": "SurveyEventsConditionSchema",
  "type": "object",
  "properties": {
    "repeatedActivation": {
      "type": "boolean",
      "description": "Whether to show the survey every time one of the events is triggered (true), or just once (false)."
    },
    "values": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SurveyConditionEventValueSchema"
      },
      "description": "Array of event names that trigger the survey."
    }
  }
}