ReviewResultDetail

This data structure is returned multiple times for each result specified in the Review Policy.

CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

Properties

Name Type Description
ActionId object
SubjectId object
SubjectType object
QuestionId object
Key object
Value object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-review-result-detail-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-review-result-detail-schema.json",
  "title": "ReviewResultDetail",
  "description": " This data structure is returned multiple times for each result specified in the Review Policy. ",
  "type": "object",
  "properties": {
    "ActionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": " A unique identifier of the Review action result. "
        }
      ]
    },
    "SubjectId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": "The HITID or AssignmentId about which this result was taken. Note that HIT-level Review Policies will often emit results about both the HIT itself and its Assignments, while Assignment-level review policies generally only emit results about the Assignment itself. "
        }
      ]
    },
    "SubjectType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " The type of the object from the SubjectId field."
        }
      ]
    },
    "QuestionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": " Specifies the QuestionId the result is describing. Depending on whether the TargetType is a HIT or Assignment this results could specify multiple values. If TargetType is HIT and QuestionId is absent, then the result describes results of the HIT, including the HIT agreement score. If ObjectType is Assignment and QuestionId is absent, then the result describes the Worker's performance on the HIT. "
        }
      ]
    },
    "Key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " Key identifies the particular piece of reviewed information. "
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " The values of Key provided by the review policies you have selected. "
        }
      ]
    }
  }
}