应聘者反馈示例

应聘者反馈表示例是一个自适应卡输入窗体,旨在在面试循环期间收集反馈。 建议将此与“共享即时流”按钮一起使用,以便团队中的任何人在面试循环期间提供对应聘者的反馈。 通过在数据库或其他所需的数据源中记录响应来扩展此反馈表,以支持以下额外的机会:

  • 在下一次与应聘者进行会话之前,更方便地查看跟进建议。

  • 记录所有响应后,有助于进行聚合的数据评审。

  • 在该过程结束时,就雇用/不雇用投票计数通知人力资源代表

    应聘者反馈窗体。

输入/输出和注释

动态令牌名称 占位符文本 注释:
{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"
    }
  ]
}