Azure DevOps · Schema

PipelineConfiguration

Configuration details for a pipeline

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
type string Pipeline configuration type
path string Path to the YAML pipeline file in the repository
repository object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-pipelineconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PipelineConfiguration",
  "title": "PipelineConfiguration",
  "type": "object",
  "description": "Configuration details for a pipeline",
  "properties": {
    "type": {
      "type": "string",
      "description": "Pipeline configuration type",
      "enum": [
        "unknown",
        "yaml",
        "designerJson",
        "justInTime",
        "designerHyphenJson"
      ]
    },
    "path": {
      "type": "string",
      "description": "Path to the YAML pipeline file in the repository",
      "example": "/azure-pipelines.yml"
    },
    "repository": {
      "$ref": "#/components/schemas/BuildRepository"
    }
  }
}