28 lines
606 B
JSON
28 lines
606 B
JSON
{
|
|
"posts": [
|
|
{ "id": "1", "title": "a title", "views": 100 },
|
|
{ "id": "2", "title": "another title", "views": 200 }
|
|
],
|
|
"comments": [
|
|
{ "id": "1", "text": "a comment about post 1", "postId": "1" },
|
|
{ "id": "2", "text": "another comment about post 1", "postId": "1" }
|
|
],
|
|
"profile": {
|
|
"name": "suraj"
|
|
},
|
|
"users": [
|
|
{
|
|
"id": "1",
|
|
"email": "admin@example.com",
|
|
"password": "adminpassword",
|
|
"role": "admin"
|
|
},
|
|
{
|
|
"id": "2",
|
|
"email": "employee@example.com",
|
|
"password": "employeepassword",
|
|
"role": "employee"
|
|
}
|
|
]
|
|
}
|