Azure DevOps · Schema

WorkItem

Azure DevOps work item

AzureCI/CDDevOpsPipelinesWork Items

Properties

Name Type Description
id integer Work item ID
rev integer Revision number
fields object Work item field values
relations array
url string
View JSON Schema on GitHub

JSON Schema

azure-devops-work-items-work-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WorkItem",
  "type": "object",
  "description": "Azure DevOps work item",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Work item ID"
    },
    "rev": {
      "type": "integer",
      "description": "Revision number"
    },
    "fields": {
      "type": "object",
      "description": "Work item field values"
    },
    "relations": {
      "type": "array"
    },
    "url": {
      "type": "string"
    }
  }
}