Created
September 5, 2023 23:44
-
-
Save josueayala27/aef0cbebd56515e7c7a8623d9b78b643 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| { | |
| "purchase_list": [ | |
| { | |
| "purchase_id": "1", | |
| "product_name": "Apples", | |
| "quantity": 3, | |
| "unit_price": 1.99, | |
| "total_price": 5.97, | |
| "customer": { | |
| "id": "101", | |
| "name": "John Doe" | |
| }, | |
| "purchase_date": "2023-09-05" | |
| }, | |
| { | |
| "purchase_id": "2", | |
| "product_name": "Bananas", | |
| "quantity": 2, | |
| "unit_price": 0.79, | |
| "total_price": 1.58, | |
| "customer": { | |
| "id": "102", | |
| "name": "Jane Smith" | |
| }, | |
| "purchase_date": "2023-09-04" | |
| }, | |
| { | |
| "purchase_id": "1", | |
| "product_name": "Apples", | |
| "quantity": 2, | |
| "unit_price": 1.99, | |
| "total_price": 3.98, | |
| "customer": { | |
| "id": "101", | |
| "name": "John Doe" | |
| }, | |
| "purchase_date": "2023-09-03" | |
| }, | |
| { | |
| "purchase_id": "3", | |
| "product_name": "Oranges", | |
| "quantity": 5, | |
| "unit_price": 0.89, | |
| "total_price": 4.45, | |
| "customer": { | |
| "id": "103", | |
| "name": "Alice Johnson" | |
| }, | |
| "purchase_date": "2023-09-02" | |
| }, | |
| { | |
| "purchase_id": "2", | |
| "product_name": "Bananas", | |
| "quantity": 3, | |
| "unit_price": 0.79, | |
| "total_price": 2.37, | |
| "customer": { | |
| "id": "102", | |
| "name": "Jane Smith" | |
| }, | |
| "purchase_date": "2023-09-01" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment