Skip to content

Commit

Permalink
[Data Factory]Add schema mapping for hierarchical data (#2906)
Browse files Browse the repository at this point in the history
* Add schema mapping for hierarchical data

* Add example for column mapping
  • Loading branch information
charlesshen-msft authored and lmazuel committed Jun 8, 2018
1 parent e02b768 commit 962108d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1615,7 +1615,11 @@
"properties": {
"columnMappings": {
"type": "object",
"description": "Column mappings. Type: string (or Expression with resultType string)."
"description": "Column mappings. Example: \"UserId: MyUserId, Group: MyGroup, Name: MyName\" Type: string (or Expression with resultType string)."
},
"schemaMapping": {
"type": "object",
"description": "The schema mapping to map between tabular data and hierarchical data. Example: {\"Column1\": \"$.Column1\", \"Column2\": \"$.Column2.Property1\", \"Column3\": \"$.Column2.Property2\"}. Type: object (or Expression with resultType object)."
}
}
},
Expand Down

0 comments on commit 962108d

Please sign in to comment.