ListAssignmentsForHITRequest

ListAssignmentsForHITRequest schema from Amazon Mechanical Turk API

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
HITId object
NextToken object
MaxResults object
AssignmentStatuses object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-list-assignments-for-hit-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mechanical-turk/refs/heads/main/json-schema/amazon-mechanical-turk-list-assignments-for-hit-request-schema.json",
  "title": "ListAssignmentsForHITRequest",
  "description": "ListAssignmentsForHITRequest schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "HITId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": "The ID of the HIT."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "Pagination token"
        }
      ]
    },
    "MaxResults": {
      "$ref": "#/components/schemas/ResultSize"
    },
    "AssignmentStatuses": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AssignmentStatusList"
        },
        {
          "description": "The status of the assignments to return: Submitted | Approved | Rejected"
        }
      ]
    }
  },
  "required": [
    "HITId"
  ]
}