Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update db.json #1043

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 76 additions & 11 deletions db.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,79 @@
{
"posts": [
{ "id": 1, "title": "Post 1" },
{ "id": 2, "title": "Post 2" },
{ "id": 3, "title": "Post 3" }
"users": [
{
"id": "3",
"email": "[email protected]",
"password": "admin123"
},
{
"id": "4",
"email": "[email protected]",
"password": "admin101"
},
{
"id": "5",
"email": "emilybosch@realestatecare .com",
"password": "admin456"
}
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 },
{ "id": 2, "body": "some comment", "postId": 1 }
],
"profile": {
"name": "typicode"
}
"inspections": [
{
"id": "1",
"type": "InProgress",
"status": "In progress",
"details": "Open inspection scheduled for location A.",
"address": "123 Maple St, Springfield",
"scheduledDate": "2023-12-01"
},
{
"id": "10",
"type": "InProgress",
"status": "In progress",
"details": "Open inspection scheduled for location A.",
"address": "123 Maple St, Springfield",
"scheduledDate": "2023-12-02"
},
{
"id": "2",
"type": "Completed",
"status": "Closed",
"details": "Completed inspection at location B."
},
{
"id": "4",
"type": "Open",
"status": "In progress",
"details": "Open inspection scheduled for location A.",
"address": "456 Oak St, Metropolis"
},
{
"id": "16",
"type": "Completed",
"status": "Closed",
"details": "Completed inspection at location B.",
"address": "789 Pine St, Gotham"
},
{
"id": "5",
"type": "Completed",
"status": "Closed",
"details": "Completed inspection at location B.",
"address": "101 Elm St, Star City"
},
{
"id": "6",
"type": "InProgress",
"status": "In progress",
"details": "Open inspection scheduled for location A.",
"scheduledDate": "2023-12-01"
},
{
"id": "7",
"type": "InProgress",
"status": "In progress",
"details": "Open inspection scheduled for location A.",
"address": "202 Birch St, Central City",
"scheduledDate": "2023-12-02"
}
]
}