-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add multisheet extraction to JSON extractor (#698)
- Loading branch information
1 parent
fe21d6e
commit 25836cc
Showing
7 changed files
with
343 additions
and
155 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@flatfile/plugin-json-extractor': minor | ||
--- | ||
|
||
This release introduces multi-sheet extraction to the JSON extractor plugin. |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"contacts": [ | ||
{ | ||
"First Name": "Tony", | ||
"Last Name": "Lamb", | ||
"Email": "[email protected]", | ||
"Address": { | ||
"Street": "123 Main Street", | ||
"City": "Springfield", | ||
"State": "ST", | ||
"Zip": "12345", | ||
"Coordinates": { | ||
"Latitude": "40.7128° N", | ||
"Longitude": "74.0060° W" | ||
} | ||
} | ||
}, | ||
{ | ||
"First Name": "Christian", | ||
"Last Name": "Ramos", | ||
"Email": "[email protected]", | ||
"Address": { | ||
"Street": "456 Elm Street", | ||
"City": "Greenville", | ||
"State": "GT", | ||
"Zip": "67890", | ||
"Coordinates": { | ||
"Latitude": "40.7128° N", | ||
"Longitude": "74.0060° W" | ||
} | ||
} | ||
}, | ||
{ | ||
"First Name": "Frederick", | ||
"Last Name": "Boyd", | ||
"Email": "[email protected]", | ||
"Address": { | ||
"Street": "789 Oak Street", | ||
"City": "Rivertown", | ||
"State": "RT", | ||
"Zip": "10112", | ||
"Coordinates": { | ||
"Latitude": "40.7128° N", | ||
"Longitude": "74.0060° W" | ||
} | ||
} | ||
} | ||
], | ||
"orders": [ | ||
{ | ||
"ID": "1234", | ||
"Amount": 5678 | ||
}, | ||
{ | ||
"ID": "9876", | ||
"Amount": 5432 | ||
} | ||
] | ||
} |
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
Oops, something went wrong.