-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
49 lines (49 loc) · 904 Bytes
/
data.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
{
"products": [
{
"id": 1,
"name": "MS office subscription - 1 year",
"price": "£50"
},
{
"id": 2,
"name": "MS office subscription - 6 months",
"price": "£30"
},
{
"id": 3,
"name": "MS office subscription - 1 months",
"price": "£20"
},
{
"id": 4,
"name": "My tool software",
"price": "£200"
},
{
"id": 5,
"name": "Conference ticket",
"price": "£99"
}
],
"orders": [
{
"id": 1,
"productList": [1, 4, 5],
"status": "complete",
"createdAt": "2022-01-11T15:02:45.000Z"
},
{
"id": 2,
"productList": [1],
"status": "abandoned",
"createdAt": "2022-01-11T15:02:45.000Z"
},
{
"id": 3,
"productList": [],
"status": "in progress",
"createdAt": "2022-01-11T15:02:45.000Z"
}
]
}