{
  "users": [
    {
      "id": 1,
      "name": "therebelrobot",
      "location": "USA"
    },
    {
      "id": 2,
      "name": "visiting-user",
      "location": "UK"
    }
  ],
  "posts": [
    {
      "id": 3,
      "title": "Kuitos",
      "body": "The internet is cool!",
      "author": "therebelrobot",
      "userId": 4
    }
  ],
  "comments": [
    {
      "id": 1,
      "body": "some comment from author",
      "votes": 10,
      "postId": 1,
      "userId": 4
    },
    {
      "id": 2,
      "body": "some comment from visitor",
      "votes": 15,
      "postId": 1,
      "userId": 2
    }
  ]
}