Spaces:
Sleeping
Sleeping
File size: 1,163 Bytes
c2967d6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | {
"customers": [
{
"email": "john.doe@email.com",
"name": "John Doe",
"tier": "Premium",
"support_tickets": 2
},
{
"email": "sarah.smith@email.com",
"name": "Sarah Smith",
"tier": "Standard",
"support_tickets": 0
},
{
"email": "mike.johnson@email.com",
"name": "Mike Johnson",
"tier": "Premium",
"support_tickets": 1
}
],
"orders": [
{
"id": "ORD-001",
"customer_email": "john.doe@email.com",
"order_date": "2024-11-15",
"product": "Wireless Headphones",
"status": "Delivered"
},
{
"id": "ORD-002",
"customer_email": "john.doe@email.com",
"order_date": "2024-12-01",
"product": "Bluetooth Speaker",
"status": "Shipped"
},
{
"id": "ORD-003",
"customer_email": "sarah.smith@email.com",
"order_date": "2024-11-20",
"product": "USB Cable",
"status": "Delivered"
},
{
"id": "ORD-004",
"customer_email": "mike.johnson@email.com",
"order_date": "2024-12-10",
"product": "Smart Watch",
"status": "Processing"
}
]
}
|