Skip to content
Open
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
40 changes: 27 additions & 13 deletions db.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,28 @@
{
"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"
[
{
"courseName": "Introduction to Computer Science",
"averageScore": 88,
"intro": "This course introduces fundamental concepts in computer science."
},
{
"courseName": "Database Management Systems",
"averageScore": 82,
"intro": "Learn about designing and managing databases efficiently."
},
{
"courseName": "Artificial Intelligence",
"averageScore": 90,
"intro": "Explore the principles and applications of artificial intelligence."
},
{
"courseName": "Mobile App Development",
"averageScore": 85,
"intro": "Develop mobile applications for iOS and Android platforms."
},
{
"courseName": "Web Development",
"averageScore": 80,
"intro": "Master front-end and back-end web development technologies."
}
}
]