-
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.
Adding JSONL support to json extractor (#705)
* Add jsonl support into json extractor plugin * Add test case * Fix lint errors * Add changeset * Apply CodeRabbit suggestion --------- Co-authored-by: Gabor Cseh <[email protected]> Co-authored-by: Carl Brugger <[email protected]>
- Loading branch information
1 parent
c4be770
commit 7ef4cd3
Showing
7 changed files
with
218 additions
and
164 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,6 @@ | ||
--- | ||
'@flatfile/plugin-json-extractor': minor | ||
'@flatfile/util-extractor': minor | ||
--- | ||
|
||
This release adds support for JSONL files in the JSON Extractor plugin. |
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,3 @@ | ||
{"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"}},"Father": {"First Name": "Father_First_1","Last Name": "Father_Last_1","Father": {"First Name": "Father_First_2","Last Name": "Father_Last_2","Father": {"First Name": "Father_First_3","Last Name": "Father_Last_3","Father": {"First Name": "Father_First_4","Last Name": "Father_Last_4","Father": {"First Name": "Father_First_5","Last Name": "Father_Last_5","Father": null}}}}}} | ||
{"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"}},"Father": {"First Name": "Father_First_1","Last Name": "Father_Last_1","Father": {"First Name": "Father_First_2","Last Name": "Father_Last_2","Father": {"First Name": "Father_First_3","Last Name": "Father_Last_3","Father": {"First Name": "Father_First_4","Last Name": "Father_Last_4","Father": {"First Name": "Father_First_5","Last Name": "Father_Last_5","Father": null}}}}}} | ||
{"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"}},"Father": {"First Name": "Father_First_1","Last Name": "Father_Last_1","Father": {"First Name": "Father_First_2","Last Name": "Father_Last_2","Father": {"First Name": "Father_First_3","Last Name": "Father_Last_3","Father": {"First Name": "Father_First_4","Last Name": "Father_Last_4","Father": {"First Name": "Father_First_5","Last Name": "Father_Last_5","Father": null}}}}}} |
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.