{
  "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": {
    "id": 1,
    "name": "typicode"
  },
  "users": [
    {
      "id": 1,
      "fname": "joe",
      "lname": "oli"
    },
    {
      "id": 2,
      "fname": "cindyrella",
      "lname": "hottie"
    },
    {
      "id": 3,
      "fname": "lisa",
      "lname": "ono"
    }
  ]
}