Azure DevOps · Schema

PipelineUpdateParameters

Request payload used to update an existing Azure Pipeline.

AzureCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
tags object Dictionary of key-value pairs to be set as tags on the Azure Pipeline. This will overwrite any existing tags.
View JSON Schema on GitHub

JSON Schema

azure-dev-ops-pipeline-update-parameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-dev-ops/refs/heads/main/json-schema/azure-dev-ops-pipeline-update-parameters-schema.json",
  "title": "PipelineUpdateParameters",
  "description": "Request payload used to update an existing Azure Pipeline.",
  "type": "object",
  "properties": {
    "tags": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "Dictionary of key-value pairs to be set as tags on the Azure Pipeline. This will overwrite any existing tags.",
      "type": "object"
    }
  }
}