-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
94 lines (94 loc) · 1.56 KB
/
db.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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"contacts": [{
"id": 1,
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"phone": "+4915112131789"
},
{
"id": 2,
"first_name": "Jane",
"last_name": "Doe",
"phone": "+4915142331789"
},
{
"id": 3,
"first_name": "Max",
"email": "[email protected]",
"phone": "+4915112131789"
},
{
"id": 4,
"last_name": "Mustermann",
"phone": "+4915115651789"
},
{
"id": 5,
"first_name": "Jake"
}
],
"conversations": [{
"id": 1,
"contactId": 1,
"conversationType": "SMS"
},
{
"id": 2,
"contactId": 4,
"conversationType": "SMS"
},
{
"id": 3,
"contactId": 1,
"conversationType": "MAIL"
}
],
"messages": [{
"id": 1,
"conversationId": 1,
"timestamp": "2021-06-08T07:35:55.621861Z",
"source": "USER",
"payload": "hello"
},
{
"id": 2,
"conversationId": 1,
"timestamp": "2021-06-08T07:38:55.621861Z",
"source": "CONTACT",
"payload": "world"
},
{
"id": 3,
"conversationId": 1,
"timestamp": "2021-06-08T08:14:55.621861Z",
"source": "CONTACT",
"payload": "test"
},
{
"id": 4,
"conversationId": 1,
"timestamp": "2021-06-08T08:21:55.621861Z",
"source": "USER",
"payload": "bye"
},
{
"id": 5,
"conversationId": 2,
"timestamp": "2021-06-08T08:30:55.621861Z",
"source": "USER",
"payload": "cool"
},
{
"id": 6,
"conversationId": 3,
"timestamp": "2021-06-09T08:30:55.621861Z",
"source": "USER",
"payload": "hey"
}
],
"user": {
"first_name": "Super",
"last_name": "Chat"
}
}