0% found this document useful (0 votes)
9 views2 pages

Ecommerce Customer and Order Data

Uploaded by

onlytrash1224
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views2 pages

Ecommerce Customer and Order Data

Uploaded by

onlytrash1224
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

ecommerce_data.

json

{
"customers": [
{"CustomerID": "C001", "Name": "Alice", "Email": "alice@[Link]", "Location":
"Delhi"},
{"CustomerID": "C002", "Name": "Bob", "Email": null, "Location": "Mumbai"},
{"CustomerID": "C003", "Name": "Charlie", "Email": "charlie@[Link]", "Location":
"Bangalore"}
],
"orders": [
{
"OrderID": "O101",
"CustomerID": "C001",
"Date": "2025-03-12",
"TotalAmount": 12000,
"Items": [
{"ProductID": "P01", "Category": "Electronics", "Quantity": 2, "Price": 3000},
{"ProductID": "P02", "Category": "Books", "Quantity": 1, "Price": 6000}
],
"Reviews": [{"ProductID": "P01", "Rating": 4, "Feedback": "Good"}]
},
{
"OrderID": "O102",
"CustomerID": "C002",
"Date": "2025-03-15",
"TotalAmount": 8000,
"Items": [
{"ProductID": "P01", "Category": "Electronics", "Quantity": 1, "Price": 3000},
{"ProductID": "P03", "Category": "Clothing", "Quantity": 2, "Price": 2500}
],
"Reviews": [{"ProductID": "P03", "Rating": 2, "Feedback": "Size issue"}]
},
{
"OrderID": "O103",
"CustomerID": "C003",
"Date": "2025-04-02",
"TotalAmount": 15000,
"Items": [
{"ProductID": "P04", "Category": "Electronics", "Quantity": 3, "Price": 5000}
],
"Reviews": [{"ProductID": "P04", "Rating": 5, "Feedback": "Excellent"}]
}
]
}

You might also like