forked from plinionaves/ionic2-firebase-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database-structure.json
81 lines (77 loc) · 2.31 KB
/
database-structure.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"users": {
"iron-man-uid": {
"name": "Iron Man",
"email": "[email protected]",
"username": "ironman",
"photo": "storage-photo-url"
},
"war-machine-uid": {
"name": "War Machine",
"email": "[email protected]",
"username": "warmachine",
"photo": "storage-photo-url"
},
"other-user-uid": {
"name": "Other User",
"email": "[email protected]",
"username": "otheruser",
"photo": "storage-photo-url"
}
},
"chats": { // /chats/iron-man-uid/war-machine-uid
"iron-man-uid": {
"war-machine-uid": {
"lastMessage": "Hey War Machine!",
"timestamp": 1491491503208,
"title": "War Machine",
"photo": "photo-url"
},
"other-user-uid": {
"lastMessage": "Hello!",
"timestamp": 1491491504565,
"title": "Other User",
"photo": "photo-url"
}
},
"war-machine-uid": {
"iron-man-uid": {
"lastMessage": "Hey War Machine!",
"timestamp": 1491491503208,
"title": "Iron Man",
"photo": "photo-url"
}
},
"other-user-uid": {
"iron-man-uid": {
"lastMessage": "Hello!",
"timestamp": 1491491504565,
"title": "Iron Man",
"photo": "photo-url"
}
}
},
"messages": {
"iron-man-uid + war-machine-uid": {
"message-uid-01": {
"userId": "war-machine-uid",
"text": "Hey Iron Man!",
"timestamp": 1491499435726
},
"message-uid-02": {
"sender": "Iron Man",
"userId": "iron-man-uid",
"text": "Hey War Machine!",
"timestamp": 1491499434895
}
},
"other-user-uid + iron-man-uid": {
"message-uid-01": {
"sender": "Other User",
"userId": "other-user-uid",
"text": "Hello!",
"timestamp": 1491499435726
}
}
}
}