Azure DevOps · Schema

Azure DevOps Work Item

JSON Schema for an Azure DevOps work item (Bug, Task, User Story, Epic, Feature, etc.).

AzureCI/CDDevOpsPipelinesWork Items

Properties

Name Type Description
id integer Work item ID
rev integer Work item revision number
fields object Work item field values keyed by reference name
relations array Links to related work items and artifacts
url string API URL for the work item
View JSON Schema on GitHub

JSON Schema

azure-devops-workitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-devops/refs/heads/main/json-schema/azure-devops-workitem-schema.json",
  "title": "Azure DevOps Work Item",
  "description": "JSON Schema for an Azure DevOps work item (Bug, Task, User Story, Epic, Feature, etc.).",
  "type": "object",
  "required": ["id", "rev", "fields"],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Work item ID",
      "minimum": 1
    },
    "rev": {
      "type": "integer",
      "description": "Work item revision number",
      "minimum": 1
    },
    "fields": {
      "type": "object",
      "description": "Work item field values keyed by reference name",
      "properties": {
        "System.Id": {"type": "integer"},
        "System.Title": {"type": "string"},
        "System.WorkItemType": {
          "type": "string",
          "description": "Work item type (Bug, Task, User Story, Epic, Feature, Test Case, etc.)"
        },
        "System.State": {
          "type": "string",
          "description": "Current workflow state"
        },
        "System.Reason": {"type": "string"},
        "System.AssignedTo": {
          "type": "object",
          "properties": {
            "displayName": {"type": "string"},
            "id": {"type": "string"},
            "uniqueName": {"type": "string"},
            "imageUrl": {"type": "string"}
          }
        },
        "System.CreatedDate": {"type": "string", "format": "date-time"},
        "System.CreatedBy": {
          "type": "object",
          "properties": {
            "displayName": {"type": "string"},
            "uniqueName": {"type": "string"}
          }
        },
        "System.ChangedDate": {"type": "string", "format": "date-time"},
        "System.TeamProject": {"type": "string"},
        "System.AreaPath": {"type": "string"},
        "System.IterationPath": {"type": "string"},
        "System.Description": {"type": "string"},
        "System.Tags": {"type": "string"},
        "Microsoft.VSTS.Common.Priority": {
          "type": "integer",
          "minimum": 1,
          "maximum": 4
        },
        "Microsoft.VSTS.Common.Severity": {
          "type": "string",
          "enum": ["1 - Critical", "2 - High", "3 - Medium", "4 - Low"]
        },
        "Microsoft.VSTS.Scheduling.StoryPoints": {
          "type": "number"
        },
        "Microsoft.VSTS.Scheduling.RemainingWork": {
          "type": "number"
        },
        "Microsoft.VSTS.Scheduling.CompletedWork": {
          "type": "number"
        },
        "Microsoft.VSTS.Build.IntegrationBuild": {
          "type": "string"
        },
        "System.BoardColumn": {"type": "string"},
        "System.BoardLane": {"type": "string"}
      },
      "additionalProperties": true
    },
    "relations": {
      "type": "array",
      "description": "Links to related work items and artifacts",
      "items": {
        "$ref": "#/$defs/WorkItemRelation"
      }
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "API URL for the work item"
    }
  },
  "$defs": {
    "WorkItemRelation": {
      "type": "object",
      "required": ["rel", "url"],
      "properties": {
        "rel": {
          "type": "string",
          "description": "Relation type reference name",
          "examples": [
            "System.LinkTypes.Hierarchy-Forward",
            "System.LinkTypes.Hierarchy-Reverse",
            "System.LinkTypes.Related",
            "System.LinkTypes.Duplicate-Forward",
            "Microsoft.VSTS.TestCase.SharedParameterReferencedBy"
          ]
        },
        "url": {
          "type": "string",
          "format": "uri"
        },
        "attributes": {
          "type": "object",
          "properties": {
            "name": {"type": "string"},
            "comment": {"type": "string"},
            "isLocked": {"type": "boolean"}
          }
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/azure-devops-workitem"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.