Amazon Mechanical Turk · JSON Structure

Amazon Mechanical Turk Hit Layout Parameter Structure

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: 2 Required: 2
CrowdsourcingHuman IntelligenceLaborMachine LearningTasks

HITLayoutParameter is a JSON Structure definition published by Amazon Mechanical Turk, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mechanical-turk/refs/heads/main/json-structure/amazon-mechanical-turk-hit-layout-parameter-structure.json",
  "name": "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"
  ]
}