{ "$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" ] }