-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
41 lines (41 loc) · 829 Bytes
/
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
{
"productList": [
{
"productName": "Iphone 13 ",
"category": "Electronic",
"freshness": "Brand New",
"price": 60,
"comment": "Apple iphone",
"date": "2022-06-16T18:30:00.000Z",
"id": 1
},
{
"productName": "Apple",
"category": "Frutis",
"freshness": "Refurbished",
"price": 150,
"comment": "This is product not fresh",
"date": "2022-06-01T18:30:00.000Z",
"id": 2
},
{
"productName": "Hp Laptop",
"category": "Electronic",
"freshness": "Second Hand",
"price": 50000,
"comment": "Laptop",
"date": "2022-06-17T18:30:00.000Z",
"id": 3
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
}
}