{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-delete-pipeline-input-schema.json", "title": "DeletePipelineInput", "description": "Represents the input of a DeletePipeline action.", "type": "object", "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/PipelineName" }, { "description": "The name of the pipeline to be deleted." } ] } }, "required": [ "name" ] }