{ "$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" ] }