-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.json
45 lines (45 loc) · 1 KB
/
contacts.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
{
"contacts": [
{
"id": "12345",
"name": "John Doeyyy",
"company": "Acme Inc",
"emails": [
"john@acme.co",
"doe@gmail.com"
],
"phones": [
"650-555-5555",
"+44 171 5555 5555"
],
"matching_terms": ["acme", "john", "john doe"],
"last_contact": "2019-02-26"
},
{
"id": "31456",
"name": "Robert Roe",
"company": "Acme Inc",
"emails": [
"bob@acme.co"
],
"phones": [
"+44 171 6666 5555"
],
"matching_terms": ["acme", "robert", "roe", "bob"],
"last_contact": "2019-02-29"
},
{
"id": "787661",
"name": "Alice Smith",
"company": "Other Corp",
"emails": [
"alice@other.co"
],
"phones": [
"+1 415 555 6666"
],
"matching_terms": ["alice", "other", "alice smith"],
"last_contact": "2019-02-29"
}
]
}