File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
DataWarehouseAutomation/DataWarehouseAutomation Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,19 @@ public class DataObjectMappingList
15
15
/// </summary>
16
16
[ JsonPropertyName ( "dataObjectMappings" ) ]
17
17
public List < DataObjectMapping > DataObjectMappings { get ; set ; } = new ( ) ;
18
+
19
+ /// <summary>
20
+ /// The name of the Data Object Mapping List. This is typically provided by one of the data object mappings in the list.
21
+ /// It has been added to allow easy identification of the objects in case a list contains many mappings.
22
+ /// </summary>
23
+ [ JsonPropertyName ( "name" ) ]
24
+ [ JsonIgnore ( Condition = JsonIgnoreCondition . Never ) ]
25
+ public string ? Name { get ; set ; }
26
+
27
+ /// <summary>
28
+ /// Free-form and optional classification for the mapping for use in data logistics generation logic (evaluation).
29
+ /// </summary>
30
+ [ JsonPropertyName ( "classifications" ) ]
31
+ [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingDefault ) ]
32
+ public List < DataClassification > ? Classifications { get ; set ; }
18
33
}
You can’t perform that action at this time.
0 commit comments