Azure DevOps · Schema

GitUserDate

Git user and date information

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
name string User display name
email string User email address
date string Date and time of the action
imageUrl string
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-gituserdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GitUserDate",
  "title": "GitUserDate",
  "type": "object",
  "description": "Git user and date information",
  "properties": {
    "name": {
      "type": "string",
      "description": "User display name",
      "example": "John Doe"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "User email address",
      "example": "[email protected]"
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time of the action"
    },
    "imageUrl": {
      "type": "string",
      "format": "uri"
    }
  }
}