-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
96 lines (96 loc) · 1.82 KB
/
db.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
{
"customers": [
{
"id": "c1",
"order_id": [
1,
2
]
},
{
"id": "c2",
"order_id": [
3,
4
]
},
{
"id": "c3",
"order_id": [
5
]
}
],
"orders": [
{
"id": 1,
"order_total": 40.77,
"purchased_at": "retail_me",
"order_crated_date": "2021-03-07T11:23:55.667Z",
"order_lines": [
{
"item_id": "i-123",
"item_description": "hammer",
"item_qty": 4,
"item_price": 77.89
}
]
},
{
"id": 2,
"order_total": 99.77,
"purchased_at": "amaze",
"order_crated_date": "2021-03-06T11:23:55.667Z",
"order_lines": [
{
"item_id": "i-444",
"item_description": "paint",
"item_qty": 2,
"item_price": 55.32
}
]
},
{
"id": 3,
"order_total": 66.77,
"purchased_at": "colds",
"order_crated_date": "2021-03-21T11:23:55.667Z",
"order_lines": [
{
"item_id": "i-666",
"item_description": "door",
"item_qty": 2,
"item_price": 1155.32
}
]
},
{
"id": 4,
"order_total": 66.77,
"purchased_at": "colds",
"order_crated_date": "2021-03-21T11:23:55.667Z",
"order_lines": [
{
"item_id": "i-666",
"item_description": "door",
"item_qty": 2,
"item_price": 1155.32
}
]
},
{
"id": 5,
"order_total": 66.77,
"purchased_at": "colds",
"order_crated_date": "2021-03-21T11:23:55.667Z",
"order_lines": [
{
"item_id": "i-666",
"item_description": "door",
"item_qty": 2,
"item_price": 1155.32
}
]
}
]
}