{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-image-builder/refs/heads/main/json-schema/ec2-image-builder-component-parameter-schema.json", "title": "ComponentParameter", "description": "Contains a key/value pair that sets the named component parameter.", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/ComponentParameterName" }, { "description": "The name of the component parameter to set." } ] }, "value": { "allOf": [ { "$ref": "#/components/schemas/ComponentParameterValueList" }, { "description": "Sets the value for the named component parameter." } ] } }, "required": [ "name", "value" ] }