reviewable_hi_ts
Creates, updates, deletes, gets or lists a reviewable_hi_ts resource.
Overview
| Name | reviewable_hi_ts |
| Type | Resource |
| Id | aws.mturk.reviewable_hi_ts |
Fields
The following fields are returned by SELECT queries:
- list_reviewable_hi_ts
| Name | Datatype | Description |
|---|---|---|
assignment_duration_in_seconds | integer (int64) | The length of time, in seconds, that a Worker has to complete the HIT after accepting it. |
auto_approval_delay_in_seconds | integer (int64) | The amount of time, in seconds, after the Worker submits an assignment for the HIT that the results are automatically approved by Amazon Mechanical Turk. This is the amount of time the Requester has to reject an assignment submitted by a Worker before the assignment is auto-approved and the Worker is paid. |
creation_time | string (date-time) | The date and time the HIT was created. |
description | string | A general description of the HIT. |
expiration | string (date-time) | The date and time the HIT expires. |
hit_group_id | string | The ID of the HIT Group of this HIT. (pattern: <code>^[A-Z0-9]+$</code>) |
hit_id | string | A unique identifier for the HIT. (pattern: <code>^[A-Z0-9]+$</code>) |
hit_layout_id | string | The ID of the HIT Layout of this HIT. (pattern: <code>^[A-Z0-9]+$</code>) |
hit_review_status | string | Indicates the review status of the HIT. Valid Values are NotReviewed | MarkedForReview | ReviewedAppropriate | ReviewedInappropriate. (NotReviewed, MarkedForReview, ReviewedAppropriate, ReviewedInappropriate) |
hit_status | string | The status of the HIT and its assignments. Valid Values are Assignable | Unassignable | Reviewable | Reviewing | Disposed. (Assignable, Unassignable, Reviewable, Reviewing, Disposed) |
hit_type_id | string | The ID of the HIT type of this HIT (pattern: <code>^[A-Z0-9]+$</code>) |
keywords | string | One or more words or phrases that describe the HIT, separated by commas. Search terms similar to the keywords of a HIT are more likely to have the HIT in the search results. |
max_assignments | integer | The number of times the HIT can be accepted and completed before the HIT becomes unavailable. |
number_of_assignments_available | integer | The number of assignments for this HIT that are available for Workers to accept. |
number_of_assignments_completed | integer | The number of assignments for this HIT that have been approved or rejected. |
number_of_assignments_pending | integer | The number of assignments for this HIT that are being previewed or have been accepted by Workers, but have not yet been submitted, returned, or abandoned. |
qualification_requirements | array | Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the ActionsGuarded field on each QualificationRequirement structure. |
question | string | The data the Worker completing the HIT uses produce the results. This is either either a QuestionForm, HTMLQuestion or an ExternalQuestion data structure. |
requester_annotation | string | An arbitrary data field the Requester who created the HIT can use. This field is visible only to the creator of the HIT. |
reward | string | A string representing a currency amount. (pattern: <code>^[0-9]+(.)?[0-9]{0,2}$</code>) |
title | string | The title of the HIT. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_reviewable_hi_ts | select | region | The ListReviewableHITs operation retrieves the HITs with Status equal to Reviewable or Status equal to Reviewing that belong to the Requester calling the operation. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_reviewable_hi_ts
The ListReviewableHITs operation retrieves the HITs with Status equal to Reviewable or Status equal to Reviewing that belong to the Requester calling the operation.
SELECT
assignment_duration_in_seconds,
auto_approval_delay_in_seconds,
creation_time,
description,
expiration,
hit_group_id,
hit_id,
hit_layout_id,
hit_review_status,
hit_status,
hit_type_id,
keywords,
max_assignments,
number_of_assignments_available,
number_of_assignments_completed,
number_of_assignments_pending,
qualification_requirements,
question,
requester_annotation,
reward,
title
FROM aws.mturk.reviewable_hi_ts
WHERE region = '{{ region }}' -- required
;