PostHog · Schema

SurveyConditionEventValueSchema

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
name string Event name that triggers the survey.
View JSON Schema on GitHub

JSON Schema

posthog-surveyconditioneventvalueschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveyConditionEventValueSchema",
  "title": "SurveyConditionEventValueSchema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Event name that triggers the survey."
    }
  },
  "required": [
    "name"
  ]
}