{ "$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-delete-worker-block-request-schema.json", "title": "DeleteWorkerBlockRequest", "description": "DeleteWorkerBlockRequest schema from Amazon Mechanical Turk API", "type": "object", "properties": { "WorkerId": { "allOf": [ { "$ref": "#/components/schemas/CustomerId" }, { "description": "The ID of the Worker to unblock." } ] }, "Reason": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "A message that explains the reason for unblocking the Worker. The Worker does not see this message." } ] } }, "required": [ "WorkerId" ] }