mturk HIT Data Structure
Jump to navigation
Jump to search
An mturk HIT Data Structure is a data structure that represents an mturk HIT.
- Context:
- It can (often) contain a HIT QuestionForm Structure.
- Example(s):
- see below.
- Counter-Example(s):
- See: mturk API.
References
2015
- http://docs.aws.amazon.com/AWSMechTurk/latest/AWSMturkAPI/ApiReference_HITDataStructureArticle.html
- QUOTE: The HIT data structure represents a single HIT, including all the information necessary for a Worker to accept and complete the HIT.
The HIT data structure is used as a response element for the following operations:
- Example
The following example shows a HIT data structure returned by the CreateHIT operation. The CreateHIT operation returns an element named HIT that represents the HIT that was created by the call.
- QUOTE: The HIT data structure represents a single HIT, including all the information necessary for a Worker to accept and complete the HIT.
<HIT>
<HITId>123RVWYBAZW00EXAMPLE</HITId>
<HITTypeId>T100CN9P324W00EXAMPLE</HITTypeId>
<CreationTime>2005-06-30T23:59:59</CreationTime>
<HITStatus>Assignable</HITStatus>
<MaxAssignments>5</MaxAssignments>
<AutoApprovalDelayInSeconds>86400</AutoApprovalDelayInSeconds>
<LifetimeInSeconds>86400</LifetimeInSeconds>
<AssignmentDurationInSeconds>300</AssignmentDurationInSeconds>
<Reward>
<Amount>25</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$0.25</FormattedPrice>
</Reward>
<Title>Location and Photograph Identification</Title>
<Description>Select the image that best represents...</Description>
<Keywords>location, photograph, image, identification, opinion</Keywords>
<Question>
<QuestionForm>
[XML-encoded Question data]
</QuestionForm>
</Question>
<QualificationRequirement>
<QualificationTypeId>789RVWYBAZW00EXAMPLE</QualificationTypeId>
<Comparator>GreaterThan</Comparator>
<Value>18</Value>
</QualificationRequirement>
<HITReviewStatus>NotReviewed</HITReviewStatus>
</HIT>