This commit is contained in:
Mehul Ahal 2023-01-04 13:41:53 +01:00 committed by Mguy13
commit f818b2d39e
10 changed files with 689 additions and 0 deletions

18
assets/input1.json Normal file
View file

@ -0,0 +1,18 @@
{
"OrderId": 1,
"Description": " Order 123",
"customer ID": 123,
"products": [{
"ProductId": "PID1",
"Description": "pid1 description",
"Amount": 1.5,
"price": 19.5
},
{
"ProductId": "PID2",
"Description": "pid2 description",
"Amount": 2.5,
"price": 12.1
}
]
}

18
assets/input2.json Normal file
View file

@ -0,0 +1,18 @@
{
"OrderId": 3,
"Description": " Order 11234",
"customer ID": 1134,
"products": [{
"ProductId": "PID3",
"Description": "pid3 description",
"Amount": 1.5,
"price": 19.5
},
{
"ProductId": "PID4",
"Description": "pid4 description",
"Amount": 2.5,
"price": 12.1
}
]
}