-
Notifications
You must be signed in to change notification settings - Fork 0
wepow:interview
Andres Freyria edited this page Sep 25, 2013
·
1 revision
An interview resource internally holds all the information required to conduct an interview with a candidate (i.e. an application). Externally, it provides a way to reach all the existing applications, create new ones, and general information about the interview.
<tr>
<td>title</td>
<td>String</td>
<td>The interview's title, which serves as the user's primary identifier</td>
</tr>
<tr>
<td>date_sent</td>
<td>DateTime</td>
<td>The date and time of the first sent application for this interview</td>
</tr>
<tr>
<td>status</td>
<td>String</td>
<td>The status of the interview — supported values: [pending, draft, closed, ready, active]</td>
</tr>
<tr>
<td>description</td>
<td>String</td>
<td>The description of the interview, for clarification purposes</td>
</tr>
<tr>
<td>open_for_new_applications</td>
<td>Boolean</td>
<td>Whether the interview supports new applications being created</td>
</tr>
Name | Type | Description |
---|---|---|
id | String | The identifier of the resource |
<tr>
<td><a href='/docs/wepow%3Aapplications'>wepow:applications</a></td>
<td>The applications that are linked to this interview</td>
</tr>
<tr>
<td><a href='/docs/wepow%3Aapplications%3Abulk'>wepow:applications:bulk</a></td>
<td>The relation where several applications can be created in a single request</td>
</tr>
Relation | Description |
---|---|
self | The resource full representation |
{
"id": "4fbe6d9ca8326c0c25000049",
"title": "IPX Tech Lead",
"date_sent": "2012-05-24T17:29:13+00:00",
"status": "active",
"description": "Tech lead for the UJL team",
"open_for_new_applications": true,
"_links": {
"self": {
"href": "/hypermedia/interviews/4fbe6d9ca8326c0c25000049"
},
"wepow:applications": {
"href": "/hypermedia/interviews/4fbe6d9ca8326c0c25000049/applications"
},
"wepow:applications:bulk": {
"href": "/hypermedia/interviews/4fbe6d9ca8326c0c25000049/applications/bulk_create"
}
}
}
- 200: The resource representation is returned.