JSON import support

+ JSON import added
+ code structure refactored
This commit is contained in:
michal-kapala
2023-03-10 20:32:57 +01:00
parent c92fd20fbc
commit 63bf053c36
10 changed files with 556 additions and 194 deletions

22
input/example.json Normal file
View File

@ -0,0 +1,22 @@
[
{
"id": 1,
"name": "john",
"is_good": true,
"score": 0.8412384213497,
"email": "john.doe@example.com",
"json": [],
"date": "2023-03-05T00:35:21.104Z"
},
{
"id": 2,
"name": "fire",
"is_good": false,
"score": -80347329472,
"email": "firebase@google.com",
"json": {
"xd": "nice meme"
},
"date": null
}
]