Skip to main content

reviewable_hi_ts

Creates, updates, deletes, gets or lists a reviewable_hi_ts resource.

Overview

Namereviewable_hi_ts
TypeResource
Idaws.mturk.reviewable_hi_ts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
assignment_duration_in_secondsinteger (int64)The length of time, in seconds, that a Worker has to complete the HIT after accepting it.
auto_approval_delay_in_secondsinteger (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_timestring (date-time)The date and time the HIT was created.
descriptionstringA general description of the HIT.
expirationstring (date-time)The date and time the HIT expires.
hit_group_idstringThe ID of the HIT Group of this HIT. (pattern: <code>^[A-Z0-9]+$</code>)
hit_idstringA unique identifier for the HIT. (pattern: <code>^[A-Z0-9]+$</code>)
hit_layout_idstringThe ID of the HIT Layout of this HIT. (pattern: <code>^[A-Z0-9]+$</code>)
hit_review_statusstringIndicates the review status of the HIT. Valid Values are NotReviewed | MarkedForReview | ReviewedAppropriate | ReviewedInappropriate. (NotReviewed, MarkedForReview, ReviewedAppropriate, ReviewedInappropriate)
hit_statusstringThe status of the HIT and its assignments. Valid Values are Assignable | Unassignable | Reviewable | Reviewing | Disposed. (Assignable, Unassignable, Reviewable, Reviewing, Disposed)
hit_type_idstringThe ID of the HIT type of this HIT (pattern: <code>^[A-Z0-9]+$</code>)
keywordsstringOne 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_assignmentsintegerThe number of times the HIT can be accepted and completed before the HIT becomes unavailable.
number_of_assignments_availableintegerThe number of assignments for this HIT that are available for Workers to accept.
number_of_assignments_completedintegerThe number of assignments for this HIT that have been approved or rejected.
number_of_assignments_pendingintegerThe 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_requirementsarrayConditions 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.
questionstringThe data the Worker completing the HIT uses produce the results. This is either either a QuestionForm, HTMLQuestion or an ExternalQuestion data structure.
requester_annotationstringAn arbitrary data field the Requester who created the HIT can use. This field is visible only to the creator of the HIT.
rewardstringA string representing a currency amount. (pattern: <code>^[0-9]+(.)?[0-9]{0,2}$</code>)
titlestringThe title of the HIT.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_reviewable_hi_tsselectregionThe 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;