Skip to content

Latest commit

 

History

History
76 lines (58 loc) · 1.71 KB

assessment.md

File metadata and controls

76 lines (58 loc) · 1.71 KB

Assessment tools

employer with paid access : Assessment tools require paid access for the employer.

Assessment tools are tests and questionnaires designed to be taken by applicants.

Information about them may be present in messages sent by an employer to an applicant within the responses/invitations.

The object looks as follows:

{
    "id": "123",
    "name": "Dynamic numerical ability test",
    "actions": [
        {
            "id": "proceed",
            "name": "Go to testing",
            "enabled": true,
            "alternate_url": "https://hh.ru/applicant/assessment/123"
        }
    ]
}

where:

Name Type Description
id string Tool unique ID
name string Tool name
actions array Array of possible actions on the tool

Action on the tool

Depending on the assessment tool state, specific actions on it can be available or not.

Available action example:

{
    "id": "proceed",
    "name": "Go to testing",
    "enabled": true,
    "alternate_url": "https://hh.ru/applicant/assessment/123"
}

Unavailable action example:

{
    "id": "proceed",
    "name": "Go to testing",
    "enabled": false,
    "disable_reason": "Testing completed"
}

where:

Name Type Description
id string Action type
name string Action description
enabled boolean Whether the action is available
alternate_url string Link to a website clicking on which will initiate the action
disable_reason string Explanation why the action is unavailable