Azure DevOps Migration Tools

v15.0.4

Azure DevOps Migration Tools

Overview
 › 
 › 
 › 
 › 
 › 

FieldMergeMapConfig

Ref

  

Less than 1 minute to read

  

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

Ever wanted to merge two or three fields? This mapping will let you do just that.

Options

Parameter name Type Description Default Value
formatExpression String missng XML code comments missng XML code comments
sourceFields List missng XML code comments missng XML code comments
targetField String missng XML code comments missng XML code comments
WorkItemTypeName String missng XML code comments missng XML code comments

Example

A basic sample for FieldMergeMapConfig configuration.

1
2
3
4
5
6
7
8
9
10
{
  "$type": "FieldMergeMapConfig",
  "WorkItemTypeName": "*",
  "sourceFields": [
    "System.Description",
    "System.Status"
  ],
  "targetField": "System.Description",
  "formatExpression": "{0} \n {1}"
}