Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- docs/CustomersOrder.json +175 -0
- docs/products.json +202 -0
docs/CustomersOrder.json
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"order_id": "ORD-12345",
|
| 4 |
+
"customer_name": "John Smith",
|
| 5 |
+
"email": "[email protected]",
|
| 6 |
+
"order_date": "2025-05-15",
|
| 7 |
+
"status": "Shipped",
|
| 8 |
+
"estimated_delivery": "2025-05-22",
|
| 9 |
+
"tracking_number": "TRK789012345",
|
| 10 |
+
"shipping_address": {
|
| 11 |
+
"street": "123 Main St",
|
| 12 |
+
"city": "Springfield",
|
| 13 |
+
"state": "IL",
|
| 14 |
+
"zip": "62704",
|
| 15 |
+
"country": "USA"
|
| 16 |
+
},
|
| 17 |
+
"items": [
|
| 18 |
+
{
|
| 19 |
+
"product_id": "PRD-001",
|
| 20 |
+
"name": "Premium Wireless Headphones",
|
| 21 |
+
"quantity": 1,
|
| 22 |
+
"price": 129.99
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"product_id": "PRD-003",
|
| 26 |
+
"name": "Smart Watch Pro",
|
| 27 |
+
"quantity": 1,
|
| 28 |
+
"price": 249.99
|
| 29 |
+
}
|
| 30 |
+
],
|
| 31 |
+
"subtotal": 379.98,
|
| 32 |
+
"tax": 22.80,
|
| 33 |
+
"shipping_cost": 15.00,
|
| 34 |
+
"total": 417.78,
|
| 35 |
+
"payment_method": "Credit Card"
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"order_id": "ORD-23456",
|
| 39 |
+
"customer_name": "Sarah Johnson",
|
| 40 |
+
"email": "[email protected]",
|
| 41 |
+
"order_date": "2025-05-10",
|
| 42 |
+
"status": "Delivered",
|
| 43 |
+
"delivery_date": "2025-05-17",
|
| 44 |
+
"tracking_number": "TRK567890123",
|
| 45 |
+
"shipping_address": {
|
| 46 |
+
"street": "456 Oak Avenue",
|
| 47 |
+
"city": "Portland",
|
| 48 |
+
"state": "OR",
|
| 49 |
+
"zip": "97205",
|
| 50 |
+
"country": "USA"
|
| 51 |
+
},
|
| 52 |
+
"items": [
|
| 53 |
+
{
|
| 54 |
+
"product_id": "PRD-005",
|
| 55 |
+
"name": "Bluetooth Speaker",
|
| 56 |
+
"quantity": 2,
|
| 57 |
+
"price": 79.99
|
| 58 |
+
}
|
| 59 |
+
],
|
| 60 |
+
"subtotal": 159.98,
|
| 61 |
+
"tax": 9.60,
|
| 62 |
+
"shipping_cost": 12.50,
|
| 63 |
+
"total": 182.08,
|
| 64 |
+
"payment_method": "PayPal"
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"order_id": "ORD-34567",
|
| 68 |
+
"customer_name": "Michael Lee",
|
| 69 |
+
"email": "[email protected]",
|
| 70 |
+
"order_date": "2025-05-18",
|
| 71 |
+
"status": "Processing",
|
| 72 |
+
"estimated_delivery": "2025-05-25",
|
| 73 |
+
"shipping_address": {
|
| 74 |
+
"street": "789 Pine Street",
|
| 75 |
+
"city": "San Diego",
|
| 76 |
+
"state": "CA",
|
| 77 |
+
"zip": "92101",
|
| 78 |
+
"country": "USA"
|
| 79 |
+
},
|
| 80 |
+
"items": [
|
| 81 |
+
{
|
| 82 |
+
"product_id": "PRD-002",
|
| 83 |
+
"name": "4K Ultra HD TV",
|
| 84 |
+
"quantity": 1,
|
| 85 |
+
"price": 899.99
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"product_id": "PRD-007",
|
| 89 |
+
"name": "HDMI Cable",
|
| 90 |
+
"quantity": 2,
|
| 91 |
+
"price": 15.99
|
| 92 |
+
}
|
| 93 |
+
],
|
| 94 |
+
"subtotal": 931.97,
|
| 95 |
+
"tax": 77.33,
|
| 96 |
+
"shipping_cost": 25.00,
|
| 97 |
+
"total": 1034.30,
|
| 98 |
+
"payment_method": "Credit Card"
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"order_id": "ORD-45678",
|
| 102 |
+
"customer_name": "Emily Chen",
|
| 103 |
+
"email": "[email protected]",
|
| 104 |
+
"order_date": "2025-05-05",
|
| 105 |
+
"status": "Delivered",
|
| 106 |
+
"delivery_date": "2025-05-12",
|
| 107 |
+
"tracking_number": "TRK345678901",
|
| 108 |
+
"shipping_address": {
|
| 109 |
+
"street": "101 Maple Road",
|
| 110 |
+
"city": "Boston",
|
| 111 |
+
"state": "MA",
|
| 112 |
+
"zip": "02108",
|
| 113 |
+
"country": "USA"
|
| 114 |
+
},
|
| 115 |
+
"items": [
|
| 116 |
+
{
|
| 117 |
+
"product_id": "PRD-004",
|
| 118 |
+
"name": "Wireless Charging Pad",
|
| 119 |
+
"quantity": 1,
|
| 120 |
+
"price": 39.99
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"product_id": "PRD-006",
|
| 124 |
+
"name": "Phone Case",
|
| 125 |
+
"quantity": 1,
|
| 126 |
+
"price": 24.99
|
| 127 |
+
}
|
| 128 |
+
],
|
| 129 |
+
"subtotal": 64.98,
|
| 130 |
+
"tax": 3.90,
|
| 131 |
+
"shipping_cost": 8.99,
|
| 132 |
+
"total": 77.87,
|
| 133 |
+
"payment_method": "Apple Pay"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"order_id": "ORD-56789",
|
| 137 |
+
"customer_name": "David Wilson",
|
| 138 |
+
"email": "[email protected]",
|
| 139 |
+
"order_date": "2025-05-20",
|
| 140 |
+
"status": "Pending",
|
| 141 |
+
"estimated_delivery": "2025-05-27",
|
| 142 |
+
"shipping_address": {
|
| 143 |
+
"street": "234 Cedar Lane",
|
| 144 |
+
"city": "Chicago",
|
| 145 |
+
"state": "IL",
|
| 146 |
+
"zip": "60601",
|
| 147 |
+
"country": "USA"
|
| 148 |
+
},
|
| 149 |
+
"items": [
|
| 150 |
+
{
|
| 151 |
+
"product_id": "PRD-008",
|
| 152 |
+
"name": "Wireless Keyboard",
|
| 153 |
+
"quantity": 1,
|
| 154 |
+
"price": 59.99
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"product_id": "PRD-009",
|
| 158 |
+
"name": "Wireless Mouse",
|
| 159 |
+
"quantity": 1,
|
| 160 |
+
"price": 34.99
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"product_id": "PRD-010",
|
| 164 |
+
"name": "Laptop Stand",
|
| 165 |
+
"quantity": 1,
|
| 166 |
+
"price": 29.99
|
| 167 |
+
}
|
| 168 |
+
],
|
| 169 |
+
"subtotal": 124.97,
|
| 170 |
+
"tax": 7.50,
|
| 171 |
+
"shipping_cost": 11.99,
|
| 172 |
+
"total": 144.46,
|
| 173 |
+
"payment_method": "Credit Card"
|
| 174 |
+
}
|
| 175 |
+
]
|
docs/products.json
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"product_id": "PRD-001",
|
| 4 |
+
"name": "Premium Wireless Headphones",
|
| 5 |
+
"category": "Audio",
|
| 6 |
+
"price": 129.99,
|
| 7 |
+
"description": "Experience crystal-clear sound with our Premium Wireless Headphones. Featuring active noise cancellation, 30-hour battery life, and comfortable over-ear design for extended listening sessions.",
|
| 8 |
+
"features": [
|
| 9 |
+
"Active Noise Cancellation",
|
| 10 |
+
"30-hour battery life",
|
| 11 |
+
"Bluetooth 5.2",
|
| 12 |
+
"Built-in microphone",
|
| 13 |
+
"Voice assistant support"
|
| 14 |
+
],
|
| 15 |
+
"in_stock": true,
|
| 16 |
+
"warranty": "2-year limited warranty",
|
| 17 |
+
"reviews": {
|
| 18 |
+
"average_rating": 4.8,
|
| 19 |
+
"total_reviews": 523
|
| 20 |
+
}
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"product_id": "PRD-002",
|
| 24 |
+
"name": "4K Ultra HD TV",
|
| 25 |
+
"category": "Television",
|
| 26 |
+
"price": 899.99,
|
| 27 |
+
"description": "Transform your home entertainment with our 65-inch 4K Ultra HD TV. Featuring QLED technology, HDR support, and smart TV capabilities for streaming your favorite content.",
|
| 28 |
+
"features": [
|
| 29 |
+
"65-inch QLED display",
|
| 30 |
+
"4K Ultra HD resolution",
|
| 31 |
+
"HDR10+ support",
|
| 32 |
+
"Smart TV features",
|
| 33 |
+
"Voice control"
|
| 34 |
+
],
|
| 35 |
+
"in_stock": true,
|
| 36 |
+
"warranty": "3-year limited warranty",
|
| 37 |
+
"reviews": {
|
| 38 |
+
"average_rating": 4.7,
|
| 39 |
+
"total_reviews": 312
|
| 40 |
+
}
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"product_id": "PRD-003",
|
| 44 |
+
"name": "Smart Watch Pro",
|
| 45 |
+
"category": "Wearables",
|
| 46 |
+
"price": 249.99,
|
| 47 |
+
"description": "Stay connected and track your health with our Smart Watch Pro. Monitor your heart rate, sleep patterns, and activity levels while receiving notifications from your smartphone.",
|
| 48 |
+
"features": [
|
| 49 |
+
"Health monitoring",
|
| 50 |
+
"Sleep tracking",
|
| 51 |
+
"Waterproof design",
|
| 52 |
+
"5-day battery life",
|
| 53 |
+
"GPS tracking"
|
| 54 |
+
],
|
| 55 |
+
"in_stock": true,
|
| 56 |
+
"warranty": "1-year limited warranty",
|
| 57 |
+
"reviews": {
|
| 58 |
+
"average_rating": 4.6,
|
| 59 |
+
"total_reviews": 847
|
| 60 |
+
}
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"product_id": "PRD-004",
|
| 64 |
+
"name": "Wireless Charging Pad",
|
| 65 |
+
"category": "Accessories",
|
| 66 |
+
"price": 39.99,
|
| 67 |
+
"description": "Eliminate cable clutter with our Wireless Charging Pad. Compatible with all Qi-enabled devices, delivering fast charging for smartphones and earbuds.",
|
| 68 |
+
"features": [
|
| 69 |
+
"15W fast charging",
|
| 70 |
+
"Qi compatibility",
|
| 71 |
+
"LED charging indicator",
|
| 72 |
+
"Compact design",
|
| 73 |
+
"Non-slip surface"
|
| 74 |
+
],
|
| 75 |
+
"in_stock": true,
|
| 76 |
+
"warranty": "1-year limited warranty",
|
| 77 |
+
"reviews": {
|
| 78 |
+
"average_rating": 4.5,
|
| 79 |
+
"total_reviews": 289
|
| 80 |
+
}
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"product_id": "PRD-005",
|
| 84 |
+
"name": "Bluetooth Speaker",
|
| 85 |
+
"category": "Audio",
|
| 86 |
+
"price": 79.99,
|
| 87 |
+
"description": "Take your music anywhere with our Portable Bluetooth Speaker. Featuring 20 hours of playtime, waterproof design, and powerful bass for outdoor adventures.",
|
| 88 |
+
"features": [
|
| 89 |
+
"Waterproof (IPX7)",
|
| 90 |
+
"20-hour battery life",
|
| 91 |
+
"Built-in microphone",
|
| 92 |
+
"Bluetooth 5.0",
|
| 93 |
+
"Stereo pairing capability"
|
| 94 |
+
],
|
| 95 |
+
"in_stock": true,
|
| 96 |
+
"warranty": "1-year limited warranty",
|
| 97 |
+
"reviews": {
|
| 98 |
+
"average_rating": 4.4,
|
| 99 |
+
"total_reviews": 621
|
| 100 |
+
}
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"product_id": "PRD-006",
|
| 104 |
+
"name": "Phone Case",
|
| 105 |
+
"category": "Accessories",
|
| 106 |
+
"price": 24.99,
|
| 107 |
+
"description": "Protect your smartphone with our rugged Phone Case. Military-grade drop protection in a slim design that preserves your phone's aesthetic.",
|
| 108 |
+
"features": [
|
| 109 |
+
"Military-grade protection",
|
| 110 |
+
"Slim design",
|
| 111 |
+
"Wireless charging compatible",
|
| 112 |
+
"Raised edges for screen protection",
|
| 113 |
+
"Available in multiple colors"
|
| 114 |
+
],
|
| 115 |
+
"in_stock": true,
|
| 116 |
+
"warranty": "Lifetime limited warranty",
|
| 117 |
+
"reviews": {
|
| 118 |
+
"average_rating": 4.3,
|
| 119 |
+
"total_reviews": 1245
|
| 120 |
+
}
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"product_id": "PRD-007",
|
| 124 |
+
"name": "HDMI Cable",
|
| 125 |
+
"category": "Accessories",
|
| 126 |
+
"price": 15.99,
|
| 127 |
+
"description": "Connect your devices with our high-speed HDMI Cable. Supporting 4K resolution at 60Hz for crystal-clear video and audio transmission.",
|
| 128 |
+
"features": [
|
| 129 |
+
"4K @ 60Hz support",
|
| 130 |
+
"High-speed data transfer",
|
| 131 |
+
"Gold-plated connectors",
|
| 132 |
+
"6-foot length",
|
| 133 |
+
"Flexible and durable design"
|
| 134 |
+
],
|
| 135 |
+
"in_stock": true,
|
| 136 |
+
"warranty": "Lifetime warranty",
|
| 137 |
+
"reviews": {
|
| 138 |
+
"average_rating": 4.8,
|
| 139 |
+
"total_reviews": 512
|
| 140 |
+
}
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"product_id": "PRD-008",
|
| 144 |
+
"name": "Wireless Keyboard",
|
| 145 |
+
"category": "Computer Accessories",
|
| 146 |
+
"price": 59.99,
|
| 147 |
+
"description": "Enhance your productivity with our Wireless Keyboard. Featuring quiet keys, multi-device connectivity, and a sleek design for your workspace.",
|
| 148 |
+
"features": [
|
| 149 |
+
"Quiet membrane keys",
|
| 150 |
+
"Connect up to 3 devices",
|
| 151 |
+
"Compact layout",
|
| 152 |
+
"2-year battery life",
|
| 153 |
+
"Compatible with all operating systems"
|
| 154 |
+
],
|
| 155 |
+
"in_stock": true,
|
| 156 |
+
"warranty": "2-year limited warranty",
|
| 157 |
+
"reviews": {
|
| 158 |
+
"average_rating": 4.6,
|
| 159 |
+
"total_reviews": 378
|
| 160 |
+
}
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"product_id": "PRD-009",
|
| 164 |
+
"name": "Wireless Mouse",
|
| 165 |
+
"category": "Computer Accessories",
|
| 166 |
+
"price": 34.99,
|
| 167 |
+
"description": "Navigate with precision using our Wireless Mouse. Ergonomic design, customizable buttons, and long battery life for everyday use.",
|
| 168 |
+
"features": [
|
| 169 |
+
"Ergonomic design",
|
| 170 |
+
"Customizable buttons",
|
| 171 |
+
"High-precision sensor",
|
| 172 |
+
"18-month battery life",
|
| 173 |
+
"Universal compatibility"
|
| 174 |
+
],
|
| 175 |
+
"in_stock": true,
|
| 176 |
+
"warranty": "2-year limited warranty",
|
| 177 |
+
"reviews": {
|
| 178 |
+
"average_rating": 4.5,
|
| 179 |
+
"total_reviews": 421
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"product_id": "PRD-010",
|
| 184 |
+
"name": "Laptop Stand",
|
| 185 |
+
"category": "Computer Accessories",
|
| 186 |
+
"price": 29.99,
|
| 187 |
+
"description": "Improve your posture with our adjustable Laptop Stand. Elevate your screen to eye level, reduce neck strain, and enhance airflow for your device.",
|
| 188 |
+
"features": [
|
| 189 |
+
"Adjustable height",
|
| 190 |
+
"Foldable design",
|
| 191 |
+
"Compatible with laptops up to 17 inches",
|
| 192 |
+
"Anti-slip surface",
|
| 193 |
+
"Lightweight aluminum construction"
|
| 194 |
+
],
|
| 195 |
+
"in_stock": true,
|
| 196 |
+
"warranty": "1-year limited warranty",
|
| 197 |
+
"reviews": {
|
| 198 |
+
"average_rating": 4.4,
|
| 199 |
+
"total_reviews": 287
|
| 200 |
+
}
|
| 201 |
+
}
|
| 202 |
+
]
|