Pivoting attributes
Learn how to edit and define your pivoting attributes
- Navigate to
 - Select Import/Export UI config files
 - Find and export the com.reltio.plugins.pivoting.json file
 - Open the exported file and locate the section with 
"id": "com.reltio.plugins.pivoting.PivotingSettings" - Add or remove attributes from the array 
pivotingAttributesas needed.Each object inside
pivotingAttributescontains:Name Type Description uriString attribute URI. childrenArray.<String> attribute URIs. If pivoting attribute is nested, then we can specify which sub-attribute of it must be used in pivoting. popupObject pivoting popup configuration: -  
label(String) - Pivoting popup caption. -  
entityType(String) - Entity type URI. Only entities of this type are shown on the popup. 
Here is an example:
{ "point": "com.reltio.plugins.ui.configuration", "id": "com.reltio.plugins.pivoting.PivotingSettings", "pivotingAttributes": [ { "uri": "configuration/entityTypes/HCP/attributes/FirstName" }, { "uri": "configuration/entityTypes/HCP/attributes/BirthCountry" }, { "uri": "configuration/entityTypes/HCP/attributes/Phone", "children": [ "configuration/entityTypes/HCP/attributes/Phone/attributes/Number", "configuration/entityTypes/HCP/attributes/Phone/attributes/Type" ], "popup": { "label": "Organizations", "entityType": "configuration/entityTypes/Organization" } } ] } -  
 - Save the updated file.
 - Import the modified file back into the system.