Skip to content

Instantly share code, notes, and snippets.

@josueayala27
Created September 5, 2023 23:44
Show Gist options
  • Select an option

  • Save josueayala27/aef0cbebd56515e7c7a8623d9b78b643 to your computer and use it in GitHub Desktop.

Select an option

Save josueayala27/aef0cbebd56515e7c7a8623d9b78b643 to your computer and use it in GitHub Desktop.
{
"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