Azure DevOps Migration Tools

v15.0.4

Azure DevOps Migration Tools

Overview
 › 
 › 
 › 
 › 
 › 

FieldValueMapConfig

Ref

  

Less than 1 minute to read

  

2024-04-05 11:36:18 -0500

Need to map not just the field but also values? This is the default value mapper.

Options

Parameter name Type Description Default Value
defaultValue String missng XML code comments missng XML code comments
sourceField String missng XML code comments missng XML code comments
targetField String missng XML code comments missng XML code comments
valueMapping Dictionary missng XML code comments missng XML code comments
WorkItemTypeName String missng XML code comments missng XML code comments

Example

A basic sample for FieldValueMapConfig configuration.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "$type": "FieldValueMapConfig",
  "WorkItemTypeName": "*",
  "sourceField": "System.Status",
  "targetField": "System.Status",
  "defaultValue": "New",
  "valueMapping": {
    "$type": "Dictionary`2",
    "New": "New",
    "Active": "Committed",
    "Resolved": "Committed",
    "Closed": "Done"
  }
}