MTurk / Client / create_hit_type

create_hit_type#

MTurk.Client.create_hit_type(**kwargs)#

The CreateHITType operation creates a new HIT type. This operation allows you to define a standard set of HIT properties to use when creating HITs. If you register a HIT type with values that match an existing HIT type, the HIT type ID of the existing type will be returned.

See also: AWS API Documentation

Request Syntax

response = client.create_hit_type(
    AutoApprovalDelayInSeconds=123,
    AssignmentDurationInSeconds=123,
    Reward='string',
    Title='string',
    Keywords='string',
    Description='string',
    QualificationRequirements=[
        {
            'QualificationTypeId': 'string',
            'Comparator': 'LessThan'|'LessThanOrEqualTo'|'GreaterThan'|'GreaterThanOrEqualTo'|'EqualTo'|'NotEqualTo'|'Exists'|'DoesNotExist'|'In'|'NotIn',
            'IntegerValues': [
                123,
            ],
            'LocaleValues': [
                {
                    'Country': 'string',
                    'Subdivision': 'string'
                },
            ],
            'RequiredToPreview': True|False,
            'ActionsGuarded': 'Accept'|'PreviewAndAccept'|'DiscoverPreviewAndAccept'
        },
    ]
)
Parameters:
  • AutoApprovalDelayInSeconds (integer) – 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.

  • AssignmentDurationInSeconds (integer) –

    [REQUIRED]

    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 (string) –

    [REQUIRED]

    The amount of money the Requester will pay a Worker for successfully completing the HIT.

  • Title (string) –

    [REQUIRED]

    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 (string) – One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs.

  • Description (string) –

    [REQUIRED]

    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.

  • QualificationRequirements (list) –

    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.

    • (dict) –

      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.

      • QualificationTypeId (string) – [REQUIRED]

        The ID of the Qualification type for the requirement.

      • Comparator (string) – [REQUIRED]

        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 (list) –

        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.

        • (integer) –

      • LocaleValues (list) –

        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.

        • (dict) –

          The Locale data structure represents a geographical region or location.

          • Country (string) – [REQUIRED]

            The country of the locale. Must be a valid ISO 3166 country code. For example, the code US refers to the United States of America.

          • Subdivision (string) –

            The state or subdivision of the locale. A valid ISO 3166-2 subdivision code. For example, the code WA refers to the state of Washington.

      • RequiredToPreview (boolean) –

        DEPRECATED: Use the ActionsGuarded 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 (string) –

        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.

Return type:

dict

Returns:

Response Syntax

{
    'HITTypeId': 'string'
}

Response Structure

  • (dict) –

    • HITTypeId (string) –

      The ID of the newly registered HIT type.

Exceptions