File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
DataWarehouseAutomation/DataWarehouseAutomation Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,16 @@ public class DataObjectMappingList
25
25
public string ? Name { get ; set ; }
26
26
27
27
/// <summary>
28
- /// Free-form and optional classification for the mapping for use in data logistics generation logic (evaluation) .
28
+ /// Free-form and optional classification for the mapping for use in data logistics generation logic.
29
29
/// </summary>
30
30
[ JsonPropertyName ( "classifications" ) ]
31
31
[ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingDefault ) ]
32
32
public List < DataClassification > ? Classifications { get ; set ; }
33
+
34
+ /// <summary>
35
+ /// The collection of extension Key/Value pairs.
36
+ /// </summary>
37
+ [ JsonPropertyName ( "extensions" ) ]
38
+ [ JsonIgnore ( Condition = JsonIgnoreCondition . WhenWritingDefault ) ]
39
+ public List < Extension > ? Extensions { get ; set ; }
33
40
}
Original file line number Diff line number Diff line change 10
10
"properties" : {
11
11
"dataObjectMappings" : {
12
12
"$ref" : " #/definitions/dataObjectMappings"
13
+ },
14
+ "name" : {
15
+ "$id" : " #/definitions/dataObjectMappings/properties/name" ,
16
+ "title" : " Name" ,
17
+ "description" : " Optional name of the data object mapping list." ,
18
+ "type" : " string"
19
+ },
20
+ "classifications" : {
21
+ "$id" : " #/definitions/dataObjectMappings/properties/classifications" ,
22
+ "title" : " Classifications" ,
23
+ "description" : " Classification for the data object mapping list." ,
24
+ "type" : [ " array" , " null" ],
25
+ "items" : {
26
+ "$ref" : " #/definitions/dataClassification"
27
+ },
28
+ "minItems" : 0 ,
29
+ "uniqueItems" : true
30
+ },
31
+ "extensions" : {
32
+ "$id" : " #/definitions/dataObjectMappings/properties/extensions" ,
33
+ "description" : " Key/Value pair extension object." ,
34
+ "type" : [ " array" , " null" ],
35
+ "items" : {
36
+ "$ref" : " #/definitions/extension"
37
+ },
38
+ "minItems" : 0 ,
39
+ "uniqueItems" : true
13
40
}
14
41
},
15
42
"definitions" : {
You can’t perform that action at this time.
0 commit comments