Azure DevOps · Schema

BuildLog

Metadata about a single build log

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id integer Log entry ID
type string Storage type of the log
url string URL to retrieve the log content
createdOn string
lastChangedOn string
lineCount integer Number of log lines
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-buildlog-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildLog",
  "title": "BuildLog",
  "type": "object",
  "description": "Metadata about a single build log",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Log entry ID"
    },
    "type": {
      "type": "string",
      "description": "Storage type of the log"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to retrieve the log content"
    },
    "createdOn": {
      "type": "string",
      "format": "date-time"
    },
    "lastChangedOn": {
      "type": "string",
      "format": "date-time"
    },
    "lineCount": {
      "type": "integer",
      "description": "Number of log lines"
    }
  }
}