Custom Questions

PropertyType
questionstring
typeenum: [text, select, multiselect]
options **array
placeholderstring

📘

Options **

Options are only applicable when type is select/multiselect

Type: Multiselect
{
  "question": "What Are the Types of Insurance You Need?",
  "type": "multiselect",
  "options": [
    "Home",
    "Life",
    "Health"
  ],
  "placeholder": "Select Insurance Types"
}
Type: select
{
  "question": "Gender",
  "type": "select",
  "options": [
    "Male",
    "Female",
    "Other"
  ],
  "placeholder": "Select your gender"
}
Type: text
{
  "question": "what is your education?",
  "type": "text",
  "placeholder": "Enter your highest education degree"
}