Advertisement
SpringLightking

db.json

May 24th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. [
  2. {
  3. "id": 1,
  4. "firstName": "John",
  5. "lastName": "Smith",
  6. "projects": [
  7. {
  8. "id": 1,
  9. "name": "project1",
  10. "issues": [
  11. {
  12. "id": 1,
  13. "title": "error1"
  14. },
  15. {
  16. "id": 2,
  17. "title": "error2"
  18. }
  19. ]
  20. },
  21. {
  22. "id": 2,
  23. "name": "project2",
  24. "issues": [
  25. {
  26. "id": 3,
  27. "title": "error3"
  28. },
  29. {
  30. "id": 4,
  31. "title": "error4"
  32. }
  33. ]
  34. }
  35. ]
  36. },
  37. {
  38. "id": 2,
  39. "firstName": "Nursultan",
  40. "lastName": "Beknazarov",
  41. "projects": [
  42. {
  43. "id": 3,
  44. "name": "project3",
  45. "issues": [
  46. {
  47. "id": 5,
  48. "title": "error5"
  49. }
  50. ]
  51. }
  52. ]
  53. }
  54. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement