UpdateHITReviewStatusRequest

UpdateHITReviewStatusRequest schema from Amazon Mechanical Turk API

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
HITId object
Revert object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-update-hit-review-status-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-update-hit-review-status-request-schema.json",
  "title": "UpdateHITReviewStatusRequest",
  "description": "UpdateHITReviewStatusRequest schema from Amazon Mechanical Turk API",
  "type": "object",
  "properties": {
    "HITId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": " The ID of the HIT to update. "
        }
      ]
    },
    "Revert": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "<p> Specifies how to update the HIT status. Default is <code>False</code>. </p> <ul> <li> <p> Setting this to false will only transition a HIT from <code>Reviewable</code> to <code>Reviewing</code> </p> </li> <li> <p> Setting this to true will only transition a HIT from <code>Reviewing</code> to <code>Reviewable</code> </p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "HITId"
  ]
}