Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. { // group
  2. "id": 1 // id of the group
  3. "name": "Chat Group" // name of group; if there are more than 2 members
  4. "members": [ "member1", "member2", ...] // ids of the group chat members; only they have access to the JSON document
  5. "chatlog": [ "timestamp": ["member1", "message1"], "timestamp": ["member2", "message1"], ...] // who sent which message in chronological order
  6. }
  7.  
  8. { // user
  9. "id": 1 // id of the user
  10. "name": "Max" // name of the user
  11. "chat_groups": [ "1", "2", ...] // ids of the groups, the user is a member of
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement