Azure DevOps · Schema

BootstrapConfiguration

Configuration used to bootstrap a Pipeline.

AzureCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
repository object Repository containing the source code for the pipeline.
template object Template used to bootstrap the pipeline.
View JSON Schema on GitHub

JSON Schema

azure-dev-ops-bootstrap-configuration-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-bootstrap-configuration-schema.json",
  "title": "BootstrapConfiguration",
  "description": "Configuration used to bootstrap a Pipeline.",
  "type": "object",
  "properties": {
    "repository": {
      "$ref": "#/definitions/CodeRepository",
      "description": "Repository containing the source code for the pipeline."
    },
    "template": {
      "$ref": "#/definitions/PipelineTemplate",
      "description": "Template used to bootstrap the pipeline."
    }
  },
  "required": [
    "template"
  ]
}