Azure DevOps · Schema

ProjectReference

Reference to an Azure DevOps Project.

AzureCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id string Unique immutable identifier of the Azure DevOps Project.
name string Name of the Azure DevOps Project.
View JSON Schema on GitHub

JSON Schema

azure-dev-ops-project-reference-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-project-reference-schema.json",
  "title": "ProjectReference",
  "description": "Reference to an Azure DevOps Project.",
  "type": "object",
  "properties": {
    "id": {
      "description": "Unique immutable identifier of the Azure DevOps Project.",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "description": "Name of the Azure DevOps Project.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ]
}