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