PostHog · Schema

SurveyEndBranching

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type object End the survey. * `end` - end
View JSON Schema on GitHub

JSON Schema

posthog-surveyendbranching-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveyEndBranching",
  "title": "SurveyEndBranching",
  "type": "object",
  "properties": {
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SurveyEndBranchingTypeEnum"
        }
      ],
      "description": "End the survey.\n\n* `end` - end"
    }
  },
  "required": [
    "type"
  ]
}