HITLayoutParameter

The HITLayoutParameter data structure defines parameter values used with a HITLayout. A HITLayout is a reusable Amazon Mechanical Turk project template used to provide Human Intelligence Task (HIT) question data for CreateHIT.

CrowdsourcingHuman IntelligenceLaborMachine-LearningTask

Properties

Name Type Description
Name object
Value object
View JSON Schema on GitHub

JSON Schema

amazon-mechanical-turk-hit-layout-parameter-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-hit-layout-parameter-schema.json",
  "title": "HITLayoutParameter",
  "description": " The HITLayoutParameter data structure defines parameter values used with a HITLayout. A HITLayout is a reusable Amazon Mechanical Turk project template used to provide Human Intelligence Task (HIT) question data for CreateHIT. ",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " The name of the parameter in the HITLayout. "
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The value substituted for the parameter referenced in the HITLayout. "
        }
      ]
    }
  },
  "required": [
    "Name",
    "Value"
  ]
}