-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
87 lines (86 loc) · 3.24 KB
/
db.json
File metadata and controls
87 lines (86 loc) · 3.24 KB
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
{
"folders": [
"Inbox",
"Trash",
"Work Emails",
"Mailing Lists",
"Sent",
"Spam",
"Drafts",
"Personal"
],
"inbox": [{
"message-id": "123abc",
"from": "Jane Doe",
"subject": "Re: Postgres Meetup Thursday"
}, {
"message-id": "456def",
"from": "Richard Roe",
"subject": "Lunch Next Week"
}, {
"message-id": "789aaa",
"from": "Alan Turing",
"subject": "Emacs Release Update"
}, {
"message-id": "098ddd",
"from": "Grace Hopper",
"subject": "New Compiler Version Available"
}],
"trash": [{
"message-id": "999999",
"from": "Acme Corp",
"subject": "Package delivered Thursday"
}, {
"message-id": "88888888",
"from": "Richard Roe",
"subject": "Re: Project looks good"
}],
"messages": [{
"from": "Grace Hopper <grace.hopper@example.com>",
"id": "098ddd",
"subject": "New Compiler Version Available",
"to": "Coding Test User <foo.bar@example.com>",
"date": "Sun, 20 Jun 2021 09:45:30 -0600",
"body": "Version 123 of our compiler is out! Please have a look and let us know any feedback.\n\nGrace"
}, {
"from": "Jane Doe <jane.doe@example.com>",
"id": "123abc",
"subject": "Re: Postgres Meetup Thursday",
"to": "Coding Test User <foo.bar@example.com>",
"date": "Mon, 21 Jun 2021 09:03:30 -0700",
"reply-to": "Jane Doe <jane.doe@example.com>",
"body": "Thursday's meetup will be held at 6 pm.\nPizza, beer, and soft drinks will be provided.\nI'll be giving a talk on the Postgres disk buffering system, and my colleague Alonzo Church will talk about a lambda calculus based extension language we're building."
}, {
"from": "Richard Roe <richard.roe@example.com>",
"id": "456def",
"subject": "Lunch next week",
"to": "Coding Test User <foo.bar@example.com>",
"date": "Mon, 21 Jun 2021 11:33:30 -0500",
"reply-to": "Richard Roe <richard.roe@example.com>",
"body": "Hey,\nI'll be in town Monday and Tuesday - want to grab lunch?"
}, {
"from": "Alan Turing <alan@example.com>",
"id": "789aaa",
"subject": "Emacs Release Update",
"to": "Coding Test User <foo.bar@example.com>",
"date": "Mon, 21 Jun 2021 11:33:30 -0500",
"body": "A new release of my favorite editor, Emacs, is out.\nDetails are at https://www.example.com\nAny feedback is welcome.\n\n-Alan"
}, {
"from": "Richard Roe <richard.roe@example.com>",
"id": "88888888",
"subject": "Re: Project looks good",
"to": "Coding Test User <foo.bar@example.com>",
"date": "Mon, 21 Jun 2021 20:09:30 -0700",
"reply-to": "Richard Roe <richard.roe@example.com>",
"body": "Just wanted to let you know everything is looking good with the project. Speak to you next week!"
}, {
"from": "Acme Corp <customerservice@example.com>",
"id": "999999",
"subject": "Package delivered Thursday",
"to": "Coding Test User <foo.bar@example.com>",
"date": "Mon, 21 Jun 2021 23:17:30 -0700",
"reply-to": "Acme Corp <customerservice@example.com>",
"body": "Hello\n\nYour widget was delivered last Thursday.\nThe package was left on your front porch.\n\nRegards,\nAcme Corp."
}
]
}