This file contains 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
### | |
Create a list of json objects; 1 object per excel sheet row | |
Assume: Excel spreadsheet is a square of data, where the first row is | |
object keys and remaining rows are object values and the desired json | |
is a list of objects. | |
Dotted notation: Key row (0) containing firstName, lastName, address.street, | |
address.city, address.state, address.zip would produce, per row, a doc with | |
first and last names and an embedded doc named address, with the address. |