[
  {
    "name": "question",
    "label": "Question or description",
    "importance": "high",
    "type": "text"
  },
  {
    "name": "placeholderText",
    "label": "Placeholder text",
    "default": "Start writing...",
    "importance": "low",
    "description": "Text that initially will be shown in the input field. Will be removed automatically when the user starts writing.",
    "type": "text",
    "optional": true
  },
  {
    "name": "inputRows",
    "label": "Input rows",
    "type": "select",
    "importance": "high",
    "description": "Determines the height of the input field.",
    "options": [
      {
        "value": "1",
        "label": "1 line"
      },
      {
        "value": "2",
        "label": "2 lines"
      },
      {
        "value": "3",
        "label": "3 lines"
      },
      {
        "value": "10",
        "label": "10 lines"
      }
    ],
    "default": "1"
  }
]