Questionnaires Schema

The location object:

FieldTypeDescription
uidstring
Speicific_typestringPre-screening questionnaire or Diversity Survey
namestringQuestionnaire's name
enabled_forstringSelected location or positions or All positions
show_asstringPart of the application form or Full page questionnaire
questionsArrayArray of questions
questions.titlestringQuestion's title
Questions.explanationstringQuestion's explanation
Question.optionsstringQuestion's answers
 {
        "uid": "72.10E",
        "speicifc_type": "Pre screen questionnaire",
        "name": "Project Manager - Pre-screening",
        "enabled_for": "Selected location or positions",
        "show_as": "Full-page questionnaire",
        "questions": [
            {
                "title": "What is your highest level of education?",
                "explanation": ""
            },
            {
                "title": "Do you have any experience with project management software?",
                "explanation": "",
                "options": [
                    {
                        "title": "Yes"
                    },
                    {
                        "title": "No"
                    }
                ]
            },
            {
                "title": "Describe a successful project you have managed in the past.",
                "explanation": ""
            },
            {
                "title": "What challenges have you faced while managing projects?",
                "explanation": ""
            },
            {
                "title": "What strategies do you use to ensure a project is completed on time and within budget?",
                "explanation": ""
            },
        ]
    }