WorkerBlock

The WorkerBlock data structure represents a Worker who has been blocked. It has two elements: the WorkerId and the Reason for the block.

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
WorkerId object
Reason object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-worker-block-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-worker-block-schema.json",
  "title": "WorkerBlock",
  "description": " The WorkerBlock data structure represents a Worker who has been blocked. It has two elements: the WorkerId and the Reason for the block. ",
  "type": "object",
  "properties": {
    "WorkerId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomerId"
        },
        {
          "description": " The ID of the Worker who accepted the HIT."
        }
      ]
    },
    "Reason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " A message explaining the reason the Worker was blocked. "
        }
      ]
    }
  }
}