PostHog · Schema

SurveySpecificQuestionBranching

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type object Jump to a specific question index. * `specific_question` - specific_question
index integer 0-based index of the next question.
View JSON Schema on GitHub

JSON Schema

posthog-surveyspecificquestionbranching-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveySpecificQuestionBranching",
  "title": "SurveySpecificQuestionBranching",
  "type": "object",
  "properties": {
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SurveySpecificQuestionBranchingTypeEnum"
        }
      ],
      "description": "Jump to a specific question index.\n\n* `specific_question` - specific_question"
    },
    "index": {
      "type": "integer",
      "minimum": 0,
      "description": "0-based index of the next question."
    }
  },
  "required": [
    "index",
    "type"
  ]
}