Azure DevOps · Schema

ApiError

Error response from the Azure DevOps API

AgileCI/CDDevOpsProject ManagementVersion Control

Properties

Name Type Description
id string
message string
typeName string
typeKey string
errorCode integer
eventId integer
View JSON Schema on GitHub

JSON Schema

microsoft-azure-devops-apierror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiError",
  "title": "ApiError",
  "type": "object",
  "description": "Error response from the Azure DevOps API",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "message": {
      "type": "string"
    },
    "typeName": {
      "type": "string"
    },
    "typeKey": {
      "type": "string"
    },
    "errorCode": {
      "type": "integer"
    },
    "eventId": {
      "type": "integer"
    }
  }
}