Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. This is the news document which will be inserted
  2. inside the proper collection (ex economy, sport, politics)
  3.  
  4. {
  5. "title": "title",
  6. "author":{
  7. "_id": "author's id",
  8. "name": "author's name"
  9. },
  10. "preview": "preview image",
  11. "content": "text of the news",
  12. "datetime": "pubblication date",
  13. "photos": [
  14. "photo1",
  15. "photo2",
  16. "photo3"
  17. ],
  18. "videos": [
  19. "video1",
  20. "video2"
  21. ],
  22. "comments": [
  23. {
  24. "id": 1,
  25. "author": "author's name",
  26. "text": "comment",
  27. "datetime": "datetime",
  28. "parents": [],
  29. "replies":[
  30. {
  31. "id": 2,
  32. "author": "author's name",
  33. "text": "comment",
  34. "datetime": "datetime",
  35. "parents": [1],
  36. "replies":[
  37. {
  38. "id": 4,
  39. "author": "author's name",
  40. "text": "comment",
  41. "datetime": "datetime",
  42. "parents": [1,2]
  43. },
  44. {
  45. "id": 6,
  46. "author": "author's name",
  47. "text": "comment",
  48. "datetime": "datetime",
  49. "parents":[1,2]
  50. }
  51. ]
  52. },
  53. {
  54. "id": 5,
  55. "author": "author's name",
  56. "text": "comment",
  57. "datetime": "datetime",
  58. "parents": [1],
  59. "replies":[]
  60. }
  61. ]
  62. },
  63. {
  64. "id": 3,
  65. "author": "author's name",
  66. "text": "comment",
  67. "datetime": "datetime",
  68. "parents": [],
  69. "replies":[]
  70. }
  71. ],
  72. "feedbacks": {
  73. "excellent": "number of excellent votes",
  74. "good": "number of good votes",
  75. "average": "number of average votes",
  76. "poor": "number of poor votes",
  77. "bad": "number of bad votes"
  78. }
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement