Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. {
  2. "_id" : ObjectId("58ca3a856d13601f9a474dca"),
  3. "name" : "user A",
  4. "email" : "userA@gmail.com",
  5. "transaction" : [
  6. {
  7. "amount" : 50,
  8. "type" : "CASH"
  9. }
  10. ]
  11. }
  12.  
  13. {
  14. "_id" : ObjectId("58ca3a856d13601f9a474dcb"),
  15. "name" : "user B",
  16. "email" : "userB@gmail.com",
  17. "transaction" : [
  18. {
  19. "amount" : 100,
  20. "type" : "CHEQUE"
  21. },
  22. {
  23. "amount" : 200,
  24. "type" : "CASH"
  25. },
  26. {
  27. "amount" : -20,
  28. "type" : "USED_SERVICE"
  29. }
  30. ]
  31. }
  32.  
  33. {
  34. "_id" : ObjectId("58ca3a856d13601f9a474dcc"),
  35. "name" : "user C",
  36. "email" : "userC@gmail.com",
  37. "transaction" : [
  38. {
  39. "amount" : 20,
  40. "type" : "CASH"
  41. },
  42. {
  43. "amount" : -5,
  44. "type" : "USED_SERVICE"
  45. }
  46. ]
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement