Created
June 17, 2019 12:11
-
-
Save storuky/c85b9ade2268413b35b9179ec24410ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Original data | |
{ | |
"data": { | |
"level1": { | |
"field1": "data 1 on level 1", // changed | |
"level2": { | |
"field1": "data 1 on level 2", | |
"level3": { | |
"field1": "data 1 on level 3", //changed | |
"field2": "data 2 on level 3" | |
} | |
}, | |
} | |
} | |
} | |
// Diff to translate | |
{ | |
"data": { | |
"level1": { | |
"field1": "data 1 on level 1", | |
"level2": { | |
"level3": { | |
"field1": "data 1 on level 3" | |
} | |
} | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment