Azure DevOps · Schema

Timeline

Build timeline showing all records (phases, jobs, tasks)

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id string Timeline ID
changeId integer Change ID for real-time timeline updates
lastChangedBy string
lastChangedOn string
records array List of timeline records (phases, jobs, tasks)
url string
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-timeline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Timeline",
  "title": "Timeline",
  "type": "object",
  "description": "Build timeline showing all records (phases, jobs, tasks)",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Timeline ID"
    },
    "changeId": {
      "type": "integer",
      "description": "Change ID for real-time timeline updates"
    },
    "lastChangedBy": {
      "type": "string",
      "format": "uuid"
    },
    "lastChangedOn": {
      "type": "string",
      "format": "date-time"
    },
    "records": {
      "type": "array",
      "description": "List of timeline records (phases, jobs, tasks)",
      "items": {
        "$ref": "#/components/schemas/TimelineRecord"
      }
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}