Azure DevOps · JSON Structure

Azure Dev Ops Pipeline Template Definition Structure

Definition of a pipeline template.

Type: object Properties: 3 Required: 1
AzureCI/CDDevOpsProject ManagementVersion Control

PipelineTemplateDefinition is a JSON Structure definition published by Azure DevOps, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

description id inputs

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-dev-ops/refs/heads/main/json-structure/azure-dev-ops-pipeline-template-definition-structure.json",
  "description": "Definition of a pipeline template.",
  "type": "object",
  "properties": {
    "description": {
      "description": "Description of the pipeline enabled by the template.",
      "type": "string"
    },
    "id": {
      "description": "Unique identifier of the pipeline template.",
      "type": "string"
    },
    "inputs": {
      "description": "List of input parameters required by the template to create a pipeline.",
      "items": {
        "$ref": "#/definitions/InputDescriptor"
      },
      "type": "array"
    }
  },
  "required": [
    "id"
  ],
  "name": "PipelineTemplateDefinition"
}