-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
27 lines (26 loc) · 1.82 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
{
"customers": [
{"id": 1, "name": {"first": "Leroy", "last": "Walton"},"email":"leroy@gmail.com","phone":"111-222-1111"},
{"id": 2, "name": {"first": "Shane", "last": "Garrett"},"email":"shane@gmail.com","phone":"222-222-2222"},
{"id": 3, "name": {"first": "Sheryl", "last": "Robinson"},"email":"sheryl@gmail.com","phone":"333-222-3333"},
{"id": 4, "name": {"first": "Fred", "last": "Bush"},"email":"fred@gmail.com","phone":"444-222-4444"},
{"id": 5, "name": {"first": "Julie", "last": "Dawson"},"email":"julie@gmail.com","phone":"555-222-5555"},
{"id": 6, "name": {"first": "Ervin", "last": "Vega"},"email":"ervin@gmail.com","phone":"666-222-6666"},
{"id": 7, "name": {"first": "Emanuel", "last": "Watson"},"email":"emanuel@gmail.com","phone":"777-222-7777"},
{"id": 8, "name": {"first": "Fred", "last": "Sharp"},"email":"fred@gmail.com","phone":"888-222-8888"},
{"id": 9, "name": {"first": "Virginia", "last": "Hall"},"email":"virginia@gmail.com","phone":"999-222-9999"},
{"id": 10, "name": {"first": "Carrie", "last": "Sanchez"},"email":"carrie@gmail.com","phone":"101-222-0010"}
],
"addresses": [
{ "id": 1, "address": "Belmont Avenue", "state": "KS" },
{ "id": 2, "address": "10th Street", "state": "MO" },
{ "id": 3, "address": "Route 100", "state": "IA" },
{ "id": 4, "address": "Evergreen Lane", "state": "MN" },
{ "id": 5, "address": "Main Street", "state": "WI" },
{ "id": 6, "address": "Briarwood Drive", "state": "MN" },
{ "id": 7, "address": "Linden Avenue", "state": "IA" },
{ "id": 8, "address": "Eagle Road", "state": "MO" },
{ "id": 9, "address": "Glenwood Avenue", "state": "KS" },
{ "id": 10, "address": "Elm Street", "state": "WI" }
]
}