{ "$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" ] }