Azure DevOps · Schema

IdentityRef

Reference to an Azure DevOps user identity

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id string
displayName string
uniqueName string
url string
imageUrl string
descriptor string
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-identityref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdentityRef",
  "title": "IdentityRef",
  "type": "object",
  "description": "Reference to an Azure DevOps user identity",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "displayName": {
      "type": "string",
      "example": "John Doe"
    },
    "uniqueName": {
      "type": "string",
      "example": "[email protected]"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "imageUrl": {
      "type": "string",
      "format": "uri"
    },
    "descriptor": {
      "type": "string"
    }
  }
}