Azure DevOps · JSON Structure

Azure Dev Ops Pipeline Properties Structure

Custom properties of a Pipeline.

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

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

Properties

bootstrapConfiguration organization pipelineId project

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-properties-structure.json",
  "description": "Custom properties of a Pipeline.",
  "type": "object",
  "properties": {
    "bootstrapConfiguration": {
      "$ref": "#/definitions/BootstrapConfiguration",
      "description": "Configuration used to bootstrap the Pipeline."
    },
    "organization": {
      "$ref": "#/definitions/OrganizationReference",
      "description": "Reference to the Azure DevOps Organization containing the Pipeline."
    },
    "pipelineId": {
      "description": "Unique identifier of the Azure Pipeline within the Azure DevOps Project.",
      "readOnly": true,
      "type": "integer"
    },
    "project": {
      "$ref": "#/definitions/ProjectReference",
      "description": "Reference to the Azure DevOps Project containing the Pipeline."
    }
  },
  "required": [
    "organization",
    "project",
    "bootstrapConfiguration"
  ],
  "name": "PipelineProperties"
}