openapi: 3.0.0
info:
version: '2017-01-17'
x-release: v4
title: 'Amazon Mechanical Turk #X Amz Target=MTurkRequesterServiceV20170117.AcceptQualificationRequest #X Amz Target=MTurkRequesterServiceV20170117.AcceptQualificationRequest #X Amz Target=MTurkRequesterServiceV20170117.CreateHIT API'
description:
The CreateHIT operation creates a new Human Intelligence Task (HIT). The new HIT is made available for Workers to find and accept on the Amazon Mechanical Turk website.
This operation allows you to specify a new HIT by passing in values for the properties of the HIT, such as its title, reward amount and number of assignments. When you pass these values to CreateHIT, a new HIT is created for you, with a new HITTypeID. The HITTypeID can be used to create additional HITs in the future without needing to specify common parameters such as the title, description and reward amount each time.
An alternative way to create HITs is to first generate a HITTypeID using the CreateHITType operation and then call the CreateHITWithHITType operation. This is the recommended best practice for Requesters who are creating large numbers of HITs.
CreateHIT also supports several ways to provide question data: by providing a value for the Question parameter that fully specifies the contents of the HIT, or by providing a HitLayoutId and associated HitLayoutParameters.
If a HIT is created with 10 or more maximum assignments, there is an additional fee. For more information, see Amazon Mechanical Turk Pricing.
ActionsGuarded field on each QualificationRequirement structure. '
HITReviewStatus:
allOf:
- $ref: '#/components/schemas/HITReviewStatus'
- description: ' Indicates the review status of the HIT. Valid Values are NotReviewed | MarkedForReview | ReviewedAppropriate | ReviewedInappropriate.'
NumberOfAssignmentsPending:
allOf:
- $ref: '#/components/schemas/Integer'
- description: ' 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.'
NumberOfAssignmentsAvailable:
allOf:
- $ref: '#/components/schemas/Integer'
- description: ' The number of assignments for this HIT that are available for Workers to accept.'
NumberOfAssignmentsCompleted:
allOf:
- $ref: '#/components/schemas/Integer'
- description: ' The number of assignments for this HIT that have been approved or rejected.'
description: ' The HIT data structure represents a single HIT, including all the information necessary for a Worker to accept and complete the HIT.'
CreateHITRequest:
type: object
required:
- LifetimeInSeconds
- AssignmentDurationInSeconds
- Reward
- Title
- Description
title: CreateHITRequest
properties:
MaxAssignments:
allOf:
- $ref: '#/components/schemas/Integer'
- description: ' The number of times the HIT can be accepted and completed before the HIT becomes unavailable. '
AutoApprovalDelayInSeconds:
allOf:
- $ref: '#/components/schemas/Long'
- description: ' The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. '
LifetimeInSeconds:
allOf:
- $ref: '#/components/schemas/Long'
- description: ' An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. '
AssignmentDurationInSeconds:
allOf:
- $ref: '#/components/schemas/Long'
- description: ' The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. '
Reward:
allOf:
- $ref: '#/components/schemas/CurrencyAmount'
- description: ' The amount of money the Requester will pay a Worker for successfully completing the HIT. '
Title:
allOf:
- $ref: '#/components/schemas/String'
- description: ' The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. '
Keywords:
allOf:
- $ref: '#/components/schemas/String'
- description: ' One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. '
Description:
allOf:
- $ref: '#/components/schemas/String'
- description: ' A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. '
Question:
allOf:
- $ref: '#/components/schemas/String'
- description: 'The data the person completing the HIT uses to produce the results.
Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace.
Either a Question parameter or a HITLayoutId parameter must be provided.
' RequesterAnnotation: allOf: - $ref: '#/components/schemas/String' - description:An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT.
The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester.
The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped.
QualificationRequirements: allOf: - $ref: '#/components/schemas/QualificationRequirementList' - description: ' 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 theActionsGuarded field on each QualificationRequirement structure. '
UniqueRequestToken:
allOf:
- $ref: '#/components/schemas/IdempotencyToken'
- description: 'A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId.
Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs.
The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters.
Constraints: Either a Question parameter or a HITLayoutId parameter must be provided.
' HITLayoutParameters: allOf: - $ref: '#/components/schemas/HITLayoutParameterList' - description: ' If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. ' HITReviewStatus: type: string enum: - NotReviewed - MarkedForReview - ReviewedAppropriate - ReviewedInappropriate IdempotencyToken: type: string minLength: 1 maxLength: 64 HITLayoutParameter: type: object required: - Name - Value properties: Name: allOf: - $ref: '#/components/schemas/String' - description: ' The name of the parameter in the HITLayout. ' Value: allOf: - $ref: '#/components/schemas/String' - description: 'The value substituted for the parameter referenced in the HITLayout. ' description: ' The HITLayoutParameter data structure defines parameter values used with a HITLayout. A HITLayout is a reusable Amazon Mechanical Turk project template used to provide Human Intelligence Task (HIT) question data for CreateHIT. ' Boolean: type: boolean QualificationRequirement: type: object required: - QualificationTypeId - Comparator properties: QualificationTypeId: allOf: - $ref: '#/components/schemas/String' - description: ' The ID of the Qualification type for the requirement.' Comparator: allOf: - $ref: '#/components/schemas/Comparator' - description: 'The kind of comparison to make against a Qualification''s value. You can compare a Qualification''s value to an IntegerValue to see if it is LessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo, EqualTo, or NotEqualTo the IntegerValue. You can compare it to a LocaleValue to see if it is EqualTo, or NotEqualTo the LocaleValue. You can check to see if the value is In or NotIn a set of IntegerValue or LocaleValue values. Lastly, a Qualification requirement can also test if a Qualification Exists or DoesNotExist in the user''s profile, regardless of its value. ' IntegerValues: allOf: - $ref: '#/components/schemas/IntegerList' - description: ' The integer value to compare against the Qualification''s value. IntegerValue must not be present if Comparator is Exists or DoesNotExist. IntegerValue can only be used if the Qualification type has an integer value; it cannot be used with the Worker_Locale QualificationType ID. When performing a set comparison by using the In or the NotIn comparator, you can use up to 15 IntegerValue elements in a QualificationRequirement data structure. ' LocaleValues: allOf: - $ref: '#/components/schemas/LocaleList' - description: ' The locale value to compare against the Qualification''s value. The local value must be a valid ISO 3166 country code or supports ISO 3166-2 subdivisions. LocaleValue can only be used with a Worker_Locale QualificationType ID. LocaleValue can only be used with the EqualTo, NotEqualTo, In, and NotIn comparators. You must only use a single LocaleValue element when using the EqualTo or NotEqualTo comparators. When performing a set comparison by using the In or the NotIn comparator, you can use up to 30 LocaleValue elements in a QualificationRequirement data structure. ' RequiredToPreview: allOf: - $ref: '#/components/schemas/Boolean' - deprecated: true description: ' DEPRECATED: Use theActionsGuarded field instead. If RequiredToPreview is true, the question data for the HIT will not be shown when a Worker whose Qualifications do not meet this requirement tries to preview the HIT. That is, a Worker''s Qualifications must meet all of the requirements for which RequiredToPreview is true in order to preview the HIT. If a Worker meets all of the requirements where RequiredToPreview is true (or if there are no such requirements), but does not meet all of the requirements for the HIT, the Worker will be allowed to preview the HIT''s question data, but will not be allowed to accept and complete the HIT. The default is false. This should not be used in combination with the ActionsGuarded field. '
ActionsGuarded:
allOf:
- $ref: '#/components/schemas/HITAccessActions'
- description: ' Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement from taking the specified action. Valid arguments include "Accept" (Worker cannot accept the HIT, but can preview the HIT and see it in their search results), "PreviewAndAccept" (Worker cannot accept or preview the HIT, but can see the HIT in their search results), and "DiscoverPreviewAndAccept" (Worker cannot accept, preview, or see the HIT in their search results). It''s possible for you to create a HIT with multiple QualificationRequirements (which can have different values for the ActionGuarded attribute). In this case, the Worker is only permitted to perform an action when they have met all QualificationRequirements guarding the action. The actions in the order of least restrictive to most restrictive are Discover, Preview and Accept. For example, if a Worker meets all QualificationRequirements that are set to DiscoverPreviewAndAccept, but do not meet all requirements that are set with PreviewAndAccept, then the Worker will be able to Discover, i.e. see the HIT in their search result, but will not be able to Preview or Accept the HIT. ActionsGuarded should not be used in combination with the RequiredToPreview field. '
description: ' The QualificationRequirement data structure describes a Qualification that a Worker must have before the Worker is allowed to accept a HIT. A requirement may optionally state that a Worker must have the Qualification in order to preview the HIT, or see the HIT in search results. '
CountryParameters:
type: string
minLength: 2
maxLength: 2
CreateHITResponse:
type: object
properties:
HIT:
allOf:
- $ref: '#/components/schemas/HIT'
- description: ' Contains the newly created HIT data. For a description of the HIT data structure as it appears in responses, see the HIT Data Structure documentation. '
ServiceFault: {}
EntityId:
type: string
pattern: ^[A-Z0-9]+$
minLength: 1
maxLength: 64
String:
type: string
Comparator:
type: string
enum:
- LessThan
- LessThanOrEqualTo
- GreaterThan
- GreaterThanOrEqualTo
- EqualTo
- NotEqualTo
- Exists
- DoesNotExist
- In
- NotIn
HITStatus:
type: string
enum:
- Assignable
- Unassignable
- Reviewable
- Reviewing
- Disposed
LocaleList:
type: array
items:
$ref: '#/components/schemas/Locale'
Integer:
type: integer
PolicyParameter:
type: object
properties:
Key:
allOf:
- $ref: '#/components/schemas/String'
- description: ' Name of the parameter from the list of Review Polices. '
Values:
allOf:
- $ref: '#/components/schemas/StringList'
- description: ' The list of values of the Parameter'
MapEntries:
allOf:
- $ref: '#/components/schemas/ParameterMapEntryList'
- description: ' List of ParameterMapEntry objects. '
description: ' Name of the parameter from the Review policy. '
Timestamp:
type: string
format: date-time
HITLayoutParameterList:
type: array
items:
$ref: '#/components/schemas/HITLayoutParameter'
ParameterMapEntryList:
type: array
items:
$ref: '#/components/schemas/ParameterMapEntry'
ParameterMapEntry:
type: object
properties:
Key:
allOf:
- $ref: '#/components/schemas/String'
- description: ' The QuestionID from the HIT that is used to identify which question requires Mechanical Turk to score as part of the ScoreMyKnownAnswers/2011-09-01 Review Policy. '
Values:
allOf:
- $ref: '#/components/schemas/StringList'
- description: ' The list of answers to the question specified in the MapEntry Key element. The Worker must match all values in order for the answer to be scored correctly. '
description: ' This data structure is the data type for the AnswerKey parameter of the ScoreMyKnownAnswers/2011-09-01 Review Policy. '
PolicyParameterList:
type: array
items:
$ref: '#/components/schemas/PolicyParameter'
QualificationRequirementList:
type: array
items:
$ref: '#/components/schemas/QualificationRequirement'
parameters:
X-Amz-Date:
name: X-Amz-Date
in: header
schema:
type: string
required: false
X-Amz-SignedHeaders:
name: X-Amz-SignedHeaders
in: header
schema:
type: string
required: false
X-Amz-Credential:
name: X-Amz-Credential
in: header
schema:
type: string
required: false
X-Amz-Content-Sha256:
name: X-Amz-Content-Sha256
in: header
schema:
type: string
required: false
X-Amz-Algorithm:
name: X-Amz-Algorithm
in: header
schema:
type: string
required: false
X-Amz-Signature:
name: X-Amz-Signature
in: header
schema:
type: string
required: false
X-Amz-Security-Token:
name: X-Amz-Security-Token
in: header
schema:
type: string
required: false
securitySchemes:
hmac:
type: apiKey
name: Authorization
in: header
description: Amazon Signature authorization v4
x-amazon-apigateway-authtype: awsSigv4
externalDocs:
description: Amazon Web Services documentation
url: https://docs.aws.amazon.com/mturk-requester/
x-hasEquivalentPaths: true