PostHog · Schema

SurveyNextQuestionBranching

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type object Continue to the next question in sequence. * `next_question` - next_question
View JSON Schema on GitHub

JSON Schema

posthog-surveynextquestionbranching-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveyNextQuestionBranching",
  "title": "SurveyNextQuestionBranching",
  "type": "object",
  "properties": {
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SurveyNextQuestionBranchingTypeEnum"
        }
      ],
      "description": "Continue to the next question in sequence.\n\n* `next_question` - next_question"
    }
  },
  "required": [
    "type"
  ]
}