Azure DevOps · JSON Structure

Azure Dev Ops Bootstrap Configuration Structure

Configuration used to bootstrap a Pipeline.

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

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

Properties

repository template

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-bootstrap-configuration-structure.json",
  "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"
  ],
  "name": "BootstrapConfiguration"
}