{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-schema/amazon-eventbridge-pipes-sage-maker-pipeline-parameter-schema.json", "title": "SageMakerPipelineParameter", "description": "Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/SageMakerPipelineParameterName" }, { "description": "Name of parameter to start execution of a SageMaker Model Building Pipeline." } ] }, "Value": { "allOf": [ { "$ref": "#/components/schemas/SageMakerPipelineParameterValue" }, { "description": "Value of parameter to start execution of a SageMaker Model Building Pipeline." } ] } }, "required": [ "Name", "Value" ] }