應徵者意見反應範例

應徵者意見反應表單範例是一種調適型卡片輸入表單,旨在收集面試循環期間的意見反應。 我們建議使用此表單搭配共用即時流程按鈕,讓小組中的任何人都可以在面試循環期間,提供對應徵者的意見反應。 透過在資料庫或其他所需的資料來源中記錄回應來擴充此功能,以支援這些額外的機會:

  • 在下次與應徵者開會之前,加速後續追蹤建議審查。

  • 在記錄所有回應之後,加速彙總資料審查。

  • 在流程結束時,透過雇用/不雇用投票計數來通知人力資源代表

    應徵者意見反應表單。

輸入/輸出和附註

動態語彙基元名稱 預留位置文字 附註:
{acFullName} {acFullName} 顯示文字
{acComments} {acComments} 顯示文字
{acDecision} 回應輸出
{acFollowUp} 回應輸出
{
  "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
  "type": "AdaptiveCard",
  "version": "1.0",
  "body": [
    {
      "type": "TextBlock",
      "size": "Medium",
      "weight": "Bolder",
      "id": "Title",
      "text": "CANDIDATE FEEDBACK FORM",
      "horizontalAlignment": "Left"
    },
    {
      "type": "Input.Text",
      "placeholder": "{acFullName}",
      "style": "text",
      "isMultiline": false,
      "maxLength": 75,
      "id": "acFullName"
    },
    {
      "type": "Input.Text",
      "placeholder": "{acComments}",
      "style": "text",
      "isMultiline": true,
      "maxLength": 200,
      "id": "acComments"
    },
    {
      "type": "TextBlock",
      "size": "Medium",
      "weight": "Bolder",
      "text": "Decision",
      "horizontalAlignment": "Left",
      "separator": true
    },
    {
      "type": "Input.ChoiceSet",
      "id": "acDecision",
      "value": "1",
      "choices": [
        {
          "title": "Hire",
          "value": "Hire"
        },
        {
          "title": "No Hire",
          "value": "No Hire"
        }
      ],
      "style": "expanded"
    },
    {
      "type": "TextBlock",
      "text": "Suggest follow-up discussion regarding:",
      "weight": "Bolder"
    },
    {
      "type": "Input.ChoiceSet",
      "id": "acFollowUp",
      "isMultiSelect": true,
      "value": "",
      "choices": [
        {
          "title": "Past experience in the topic area",
          "value": "Experience"
        },
        {
          "title": "Inclusive behaviors and work ethics",
          "value": "Inclusivity"
        },
        {
          "title": "Ability to work without supervision",
          "value": "Independent"
        }
      ]
    }
  ],
  "actions": [
    {
      "type": "Action.Submit",
      "title": "Submit"
    }
  ]
}