Guest User

Untitled

a guest
Oct 19th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. {
  2. [
  3. {
  4. _id: '', // user's id
  5. fullname: '',
  6. username: '', // unique username
  7. email: '',
  8. password: '',
  9. posts: [
  10. {
  11. status: '', // user post content
  12. date: '', // new Date()
  13. comments: [
  14. {
  15. reply: '', // actual comment
  16. on: '', // new Date()
  17. by: '' // user_id of the user who commented
  18. }
  19. ], // array of comments
  20. likes: [
  21. {
  22. by: '', // user_id of the user who liked
  23. liked: boolean // true or false
  24. }
  25. ] // array of likes
  26. }
  27. ],
  28. info: {
  29. dob: '', // date of birth
  30. city: '',
  31. phone: '',
  32. email: {
  33. primary: '', // mail used by the user for registration
  34. secondary: '', // optional email
  35. },
  36. bio: ''
  37. }
  38. }
  39. ]
  40. }
Add Comment
Please, Sign In to add comment