-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmydatabase2.json
101 lines (101 loc) · 2.28 KB
/
mydatabase2.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[
{
"orderID": 1,
"orderDate": "12/12/2024",
"orderMethod": "Standard",
"status": "shipped",
"shippingState": "Texas",
"shippingZipCode": "78735",
"customerInformation": {
"customerID": 1,
"customerFirstName": "Tom",
"customerLastName": "Snow",
"email": "[email protected]",
"phoneNumber": "222-222-2222"
},
"productInformation": {
"orderedProducts": [
{
"productID": 1,
"quantity": "100",
"productName": "paper",
"price": 5.00,
"stockQuantity": 25
},
{
"productID": 2,
"quantity": "133",
"productName": "book",
"price": 2.25,
"stockQuantity": 40
}
]
}
},
{
"orderID": 2,
"orderDate": "04/23/2024",
"orderMethod": "Expedite",
"status": "delivered",
"shippingState": "Michigan",
"shippingZipCode": "48111",
"customerInformation": {
"customerID": 2,
"customerFirstName": "Sally",
"customerLastName": "West",
"email": "[email protected]",
"phoneNumber": "111-111-1111"
},
"productInformation": {
"orderedProducts": [
{
"productID": 3,
"quantity": "250",
"productName": "clothes",
"price": 20.11,
"stockQuantity": 500
},
{
"productID": 4,
"quantity": "10",
"productName": "window",
"price": 50.55,
"stockQuantity": 30
}
]
}
},
{
"orderID": 3,
"orderDate": "03/16/2023",
"orderMethod": "Standard",
"status": "pending",
"shippingState": "Minnesota",
"shippingZipCode": "55003",
"customerInformation": {
"customerID": 3,
"customerFirstName": "John",
"customerLastName": "Doe",
"email": "[email protected]",
"phoneNumber": "333-333-3333"
},
"productInformation": {
"orderedProducts": [
{
"productID": 5,
"quantity": "70",
"productName": "phone",
"price": 300.00,
"stockQuantity": 110
},
{
"productID": 6,
"quantity": "90",
"productName": "lamp",
"price": 15.99,
"stockQuantity": 70
}
]
}
}
]