diff --git a/db.json b/db.json index 7e0d3c0a92..ef06ebc55b 100644 --- a/db.json +++ b/db.json @@ -1,14 +1,32 @@ { - "posts": [ - { "id": 1, "title": "Post 1" }, - { "id": 2, "title": "Post 2" }, - { "id": 3, "title": "Post 3" } - ], - "comments": [ - { "id": 1, "body": "some comment", "postId": 1 }, - { "id": 2, "body": "some comment", "postId": 1 } - ], - "profile": { - "name": "typicode" - } + "mobiles":[ + { + "id": 1, + "name": "iPhone 12", + "price": 79999, + "ram":32, + "storage":256 + }, + { + "id": 2, + "name": "Galaxy S21", + "price": 49999, + "ram":16, + "storage":128 + }, + { + "id": 3, + "name": "Pixel 5", + "price": 39999, + "ram":8, + "storage":64 + }, + { + "id": 4, + "name": "one plus", + "price": 19999, + "ram":6, + "storage":64 + } + ] }