Fields - Get Fields

Returns a list of all fields in a process.

GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/fields?api-version=4.1-preview.1

URI Parameters

Name In Required Type Description
organization
path True

string

The name of the Azure DevOps organization.

processId
path True

string

uuid

The ID of the process

api-version
query True

string

Version of the API to use. This should be set to '4.1-preview.1' to use this version of the api.

Responses

Name Type Description
200 OK

FieldModel[]

successful operation

Security

accessToken

Personal access token. Use any value for the user name and the token as the password.

Type: basic

Examples

Get the list of process fields

Sample Request

GET https://dev.azure.com/{organization}/_apis/work/processes/{processId}/fields?api-version=4.1-preview.1

Sample Response

{
  "count": 148,
  "value": [
    {
      "id": "System.Id",
      "name": "ID",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.Id",
      "isIdentity": false
    },
    {
      "id": "System.Title",
      "name": "Title",
      "type": "string",
      "description": "Stories affected and how",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.Title",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.StoryPoints",
      "name": "Story Points",
      "type": "double",
      "description": "The size of work estimated for fixing the bug",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.StoryPoints",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.RemainingWork",
      "name": "Remaining Work",
      "type": "double",
      "description": "An estimate of the number of units of work remaining to complete this bug",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.RemainingWork",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.OriginalEstimate",
      "name": "Original Estimate",
      "type": "double",
      "description": "Initial value for Remaining Work - set once, when work begins",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.OriginalEstimate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.CompletedWork",
      "name": "Completed Work",
      "type": "double",
      "description": "The number of units of work that have been spent on this bug",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.CompletedWork",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Activity",
      "name": "Activity",
      "type": "string",
      "description": "Type of work involved",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Activity",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.SystemInfo",
      "name": "System Info",
      "type": "html",
      "description": "Test context, provided automatically by test infrastructure",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.SystemInfo",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.ReproSteps",
      "name": "Repro Steps",
      "type": "html",
      "description": "How to see the bug. End by contrasting expected with actual behavior.",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.ReproSteps",
      "isIdentity": false
    },
    {
      "id": "System.AssignedTo",
      "name": "Assigned To",
      "type": "string",
      "description": "The person currently working on this bug",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.AssignedTo",
      "isIdentity": true
    },
    {
      "id": "System.AreaPath",
      "name": "Area Path",
      "type": "treePath",
      "description": "The area of the product with which this bug is associated",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.AreaPath",
      "isIdentity": false
    },
    {
      "id": "System.IterationPath",
      "name": "Iteration Path",
      "type": "treePath",
      "description": "The iteration within which this bug will be fixed",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.IterationPath",
      "isIdentity": false
    },
    {
      "id": "System.History",
      "name": "History",
      "type": "history",
      "description": "Discussion thread plus automatic record of changes",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.History",
      "isIdentity": false
    },
    {
      "id": "System.State",
      "name": "State",
      "type": "string",
      "description": "New = for triage; Active = not yet fixed; Resolved = fixed not yet verified; Closed = fix verified.",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.State",
      "isIdentity": false
    },
    {
      "id": "System.Reason",
      "name": "Reason",
      "type": "string",
      "description": "The reason why the bug is in the current state",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.Reason",
      "isIdentity": false
    },
    {
      "id": "System.ChangedDate",
      "name": "Changed Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.ChangedDate",
      "isIdentity": false
    },
    {
      "id": "System.ChangedBy",
      "name": "Changed By",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.ChangedBy",
      "isIdentity": true
    },
    {
      "id": "System.CreatedDate",
      "name": "Created Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.CreatedDate",
      "isIdentity": false
    },
    {
      "id": "System.CreatedBy",
      "name": "Created By",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.CreatedBy",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.Common.StateChangeDate",
      "name": "State Change Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.StateChangeDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.ActivatedDate",
      "name": "Activated Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ActivatedDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.ActivatedBy",
      "name": "Activated By",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ActivatedBy",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.Common.ResolvedDate",
      "name": "Resolved Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ResolvedDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.ResolvedBy",
      "name": "Resolved By",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ResolvedBy",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.Common.ResolvedReason",
      "name": "Resolved Reason",
      "type": "string",
      "description": "The reason why the bug was resolved",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ResolvedReason",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.ClosedDate",
      "name": "Closed Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ClosedDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.ClosedBy",
      "name": "Closed By",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ClosedBy",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.Common.Priority",
      "name": "Priority",
      "type": "integer",
      "description": "Business importance. 1=must fix; 4=unimportant.",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Priority",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Severity",
      "name": "Severity",
      "type": "string",
      "description": "Assessment of the effect of the bug on the project",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Severity",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.StackRank",
      "name": "Stack Rank",
      "type": "double",
      "description": "Work first on items with lower-valued stack rank. Set in triage.",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.StackRank",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.ValueArea",
      "name": "Value Area",
      "type": "string",
      "description": "The type should be set to Business primarily to represent customer-facing issues. Work to change the architecture should be added as a User Story",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ValueArea",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Build.IntegrationBuild",
      "name": "Integration Build",
      "type": "string",
      "description": "The build in which the bug was fixed",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Build.IntegrationBuild",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Build.FoundIn",
      "name": "Found In",
      "type": "string",
      "description": "The build in which the bug was found",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Build.FoundIn",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.ClosingComment",
      "name": "Closing Comment",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.ClosingComment",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.ContextCode",
      "name": "Associated Context Code",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.ContextCode",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.ContextType",
      "name": "Associated Context Type",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.ContextType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.Context",
      "name": "Associated Context",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.Context",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.ContextOwner",
      "name": "Associated Context Owner",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.ContextOwner",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.ClosedStatusCode",
      "name": "Closed Status Code",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.ClosedStatusCode",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.ClosedStatus",
      "name": "Closed Status",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.ClosedStatus",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.StateCode",
      "name": "State Code",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.StateCode",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.AcceptedDate",
      "name": "Accepted Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.AcceptedDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CodeReview.AcceptedBy",
      "name": "Accepted By",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CodeReview.AcceptedBy",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.Common.ReviewedBy",
      "name": "Reviewed By",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.ReviewedBy",
      "isIdentity": true
    },
    {
      "id": "System.Description",
      "name": "Description",
      "type": "html",
      "description": "Description or acceptance criteria for this epic to be considered complete",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.Description",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Risk",
      "name": "Risk",
      "type": "string",
      "description": "Uncertainty in epic",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Risk",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.TargetDate",
      "name": "Target Date",
      "type": "dateTime",
      "description": "The target date for completing the epic",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.TargetDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.BusinessValue",
      "name": "Business Value",
      "type": "integer",
      "description": "The business value for the customer when the epic is released",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.BusinessValue",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.TimeCriticality",
      "name": "Time Criticality",
      "type": "double",
      "description": "How does the business value decay over time. Higher values make the epic more time critical",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.TimeCriticality",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.Effort",
      "name": "Effort",
      "type": "double",
      "description": "The estimated effort to implemented the epic",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.Effort",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Feedback.ApplicationType",
      "name": "Application Type",
      "type": "string",
      "description": "The type of application on which to give feedback",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Feedback.ApplicationType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Feedback.ApplicationStartInformation",
      "name": "Application Start Information",
      "type": "plainText",
      "description": "The path to execute the application",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Feedback.ApplicationStartInformation",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Feedback.ApplicationLaunchInstructions",
      "name": "Application Launch Instructions",
      "type": "html",
      "description": "Instructions to launch the specified application",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Feedback.ApplicationLaunchInstructions",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Rating",
      "name": "Rating",
      "type": "string",
      "description": "Overall rating provided as part of feedback response",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Rating",
      "isIdentity": false
    },
    {
      "id": "System.Rev",
      "name": "Rev",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.Rev",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Issue",
      "name": "Issue",
      "type": "string",
      "description": "Used to highlight the shared step, e.g., to mark it as an issue",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Issue",
      "isIdentity": false
    },
    {
      "id": "System.IterationId",
      "name": "Iteration ID",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.IterationId",
      "isIdentity": false
    },
    {
      "id": "System.WorkItemType",
      "name": "Work Item Type",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.WorkItemType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.Steps",
      "name": "Steps",
      "type": "html",
      "description": "Steps required to perform the test",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.Steps",
      "isIdentity": false
    },
    {
      "id": "System.ExternalLinkCount",
      "name": "External Link Count",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.ExternalLinkCount",
      "isIdentity": false
    },
    {
      "id": "System.RelatedLinkCount",
      "name": "Related Link Count",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.RelatedLinkCount",
      "isIdentity": false
    },
    {
      "id": "System.TeamProject",
      "name": "Team Project",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.TeamProject",
      "isIdentity": false
    },
    {
      "id": "System.HyperLinkCount",
      "name": "Hyperlink Count",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.HyperLinkCount",
      "isIdentity": false
    },
    {
      "id": "System.AttachedFileCount",
      "name": "Attached File Count",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.AttachedFileCount",
      "isIdentity": false
    },
    {
      "id": "System.NodeName",
      "name": "Node Name",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.NodeName",
      "isIdentity": false
    },
    {
      "id": "System.RevisedDate",
      "name": "Revised Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.RevisedDate",
      "isIdentity": false
    },
    {
      "id": "System.AreaId",
      "name": "Area ID",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/System.AreaId",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.Parameters",
      "name": "Parameters",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.Parameters",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.StartDate",
      "name": "Start Date",
      "type": "dateTime",
      "description": "The date to start the task",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.StartDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.FinishDate",
      "name": "Finish Date",
      "type": "dateTime",
      "description": "The date to finish the task",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.FinishDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.AutomatedTestName",
      "name": "Automated Test Name",
      "type": "string",
      "description": "The name of the test that automates this test case",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.AutomatedTestName",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.AutomatedTestStorage",
      "name": "Automated Test Storage",
      "type": "string",
      "description": "The assembly containing the test that automates this test case",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.AutomatedTestStorage",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.AutomatedTestId",
      "name": "Automated Test Id",
      "type": "string",
      "description": "The ID of the test that automates this test case",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.AutomatedTestId",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.AutomatedTestType",
      "name": "Automated Test Type",
      "type": "string",
      "description": "The type of the test that automates this test case",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.AutomatedTestType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.LocalDataSource",
      "name": "Local Data Source",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.LocalDataSource",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.AutomationStatus",
      "name": "Automation status",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.AutomationStatus",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.TestSuiteTypeId",
      "name": "Test Suite Type Id",
      "type": "integer",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.TestSuiteTypeId",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.TestSuiteType",
      "name": "Test Suite Type",
      "type": "string",
      "description": "Specifies the category of the test suite.",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.TestSuiteType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.QueryText",
      "name": "Query Text",
      "type": "plainText",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.QueryText",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.TCM.TestSuiteAudit",
      "name": "Test Suite Audit",
      "type": "plainText",
      "description": "Captures the test suite audit trail.",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.TCM.TestSuiteAudit",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.AcceptanceCriteria",
      "name": "Acceptance Criteria",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.AcceptanceCriteria",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.DueDate",
      "name": "Due Date",
      "type": "dateTime",
      "description": "The date by which this issue needs to be closed",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.DueDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Triage",
      "name": "Triage",
      "type": "string",
      "description": "Status of triaging the bug",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Triage",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Discipline",
      "name": "Discipline",
      "type": "string",
      "description": "The discipline to which the bug belongs",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Discipline",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Scheduling.Size",
      "name": "Size",
      "type": "double",
      "description": "The size of work estimated for fixing the bug",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Scheduling.Size",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Blocked",
      "name": "Blocked",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Blocked",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Symptom",
      "name": "Symptom",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Symptom",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ProposedFix",
      "name": "Proposed Fix",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ProposedFix",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.FoundInEnvironment",
      "name": "Found In Environment",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.FoundInEnvironment",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.RootCause",
      "name": "Root Cause",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RootCause",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.HowFound",
      "name": "How Found",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.HowFound",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.TaskType",
      "name": "Task Type",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.TaskType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiresReview",
      "name": "Requires Review",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiresReview",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiresTest",
      "name": "Requires Test",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiresTest",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Analysis",
      "name": "Analysis",
      "type": "html",
      "description": "The analysis of the issue including root cause identification and potential solutions",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Analysis",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.CorrectiveActionPlan",
      "name": "Corrective Action Plan",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.CorrectiveActionPlan",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.CorrectiveActionActualResolution",
      "name": "Corrective Action Actual Resolution",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.CorrectiveActionActualResolution",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.TargetResolveDate",
      "name": "Target Resolve Date",
      "type": "dateTime",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.TargetResolveDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Escalate",
      "name": "Escalate",
      "type": "string",
      "description": "Used to flag an issue as critical",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Escalate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Justification",
      "name": "Justification",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Justification",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ImpactOnArchitecture",
      "name": "Impact on Architecture",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ImpactOnArchitecture",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ImpactOnUserExperience",
      "name": "Impact on User Experience",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ImpactOnUserExperience",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ImpactOnTest",
      "name": "Impact on Test",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ImpactOnTest",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ImpactOnDevelopment",
      "name": "Impact on Development",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ImpactOnDevelopment",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ImpactOnTechnicalPublications",
      "name": "Impact on Technical Publications",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ImpactOnTechnicalPublications",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.MitigationTriggers",
      "name": "Mitigation Triggers",
      "type": "html",
      "description": "The mitigation triggers",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.MitigationTriggers",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.MitigationPlan",
      "name": "Mitigation Plan",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.MitigationPlan",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ContingencyPlan",
      "name": "Contingency Plan",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ContingencyPlan",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Probability",
      "name": "Probability",
      "type": "integer",
      "description": "A percentage indicating the estimated likelihood that the risk will occur",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Probability",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequirementType",
      "name": "Requirement Type",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequirementType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Committed",
      "name": "Committed",
      "type": "string",
      "description": "Has the requirement been committed?",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Committed",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.ImpactAssessmentHtml",
      "name": "Impact Assessment HTML",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ImpactAssessmentHtml",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.UserAcceptanceTest",
      "name": "User Acceptance Test",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.UserAcceptanceTest",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.SubjectMatterExpert1",
      "name": "Subject Matter Expert 1",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.SubjectMatterExpert1",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.SubjectMatterExpert2",
      "name": "Subject Matter Expert 2",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.SubjectMatterExpert2",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.SubjectMatterExpert3",
      "name": "Subject Matter Expert 3",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.SubjectMatterExpert3",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.Purpose",
      "name": "Purpose",
      "type": "html",
      "description": "The purpose of the review",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Purpose",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Comments",
      "name": "Comments",
      "type": "html",
      "description": "Comments for the review",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Comments",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.Minutes",
      "name": "Minutes",
      "type": "html",
      "description": "The minutes of the review meeting",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.Minutes",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.MeetingType",
      "name": "Meeting Type",
      "type": "string",
      "description": "The type of the review meeting",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.MeetingType",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.CalledDate",
      "name": "Called Date",
      "type": "dateTime",
      "description": "The date and time the review was called",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.CalledDate",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.CMMI.CalledBy",
      "name": "Called By",
      "type": "string",
      "description": "The person who called the review",
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.CalledBy",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee1",
      "name": "Required Attendee 1",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee1",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee2",
      "name": "Required Attendee 2",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee2",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee3",
      "name": "Required Attendee 3",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee3",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee4",
      "name": "Required Attendee 4",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee4",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee5",
      "name": "Required Attendee 5",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee5",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee6",
      "name": "Required Attendee 6",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee6",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee7",
      "name": "Required Attendee 7",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee7",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.RequiredAttendee8",
      "name": "Required Attendee 8",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.RequiredAttendee8",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee1",
      "name": "Optional Attendee 1",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee1",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee2",
      "name": "Optional Attendee 2",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee2",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee3",
      "name": "Optional Attendee 3",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee3",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee4",
      "name": "Optional Attendee 4",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee4",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee5",
      "name": "Optional Attendee 5",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee5",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee6",
      "name": "Optional Attendee 6",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee6",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee7",
      "name": "Optional Attendee 7",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee7",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.OptionalAttendee8",
      "name": "Optional Attendee 8",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.OptionalAttendee8",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee1",
      "name": "Actual Attendee 1",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee1",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee2",
      "name": "Actual Attendee 2",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee2",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee3",
      "name": "Actual Attendee 3",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee3",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee4",
      "name": "Actual Attendee 4",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee4",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee5",
      "name": "Actual Attendee 5",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee5",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee6",
      "name": "Actual Attendee 6",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee6",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee7",
      "name": "Actual Attendee 7",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee7",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.CMMI.ActualAttendee8",
      "name": "Actual Attendee 8",
      "type": "string",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.CMMI.ActualAttendee8",
      "isIdentity": true
    },
    {
      "id": "Microsoft.VSTS.Common.BacklogPriority",
      "name": "Backlog Priority",
      "type": "double",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.BacklogPriority",
      "isIdentity": false
    },
    {
      "id": "Microsoft.VSTS.Common.Resolution",
      "name": "Resolution",
      "type": "html",
      "description": null,
      "pickList": null,
      "url": "https://dev.azure.com/fabrikam/_apis/work/processDefinitions/a6c1d9b6-ea27-407d-8c40-c9b7ab112bb6/fields/Microsoft.VSTS.Common.Resolution",
      "isIdentity": false
    }
  ]
}

Definitions

Name Description
FieldModel
FieldType

FieldModel

Name Type Description
description

string

id

string

isIdentity

boolean

name

string

type

FieldType

url

string

FieldType

Name Type Description
boolean

string

dateTime

string

double

string

guid

string

history

string

html

string

identity

string

integer

string

picklistDouble

string

picklistInteger

string

picklistString

string

plainText

string

string

string

treePath

string