-
Notifications
You must be signed in to change notification settings - Fork 0
/
clients.json
42 lines (35 loc) · 1.32 KB
/
clients.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
{
"clients" : [
{
"firstName" : "John",
"lastName" : "Doe",
"email" : "[email protected]",
"street" : "Washington Street 14" },
{ "firstName" : "Mike",
"lastName" : "Doe",
"email" : "[email protected]",
"street" : "Kstret 18"},
{ "firstName" : "Stephen",
"lastName" : "Doe",
"email" : "Sdoe@gmail",
"street" : "Wallstreet 15"},
{ "firstName" : "Thomas",
"lastName" : "Doe",
"email" : "Tdoe@gmail",
"street" : "St Thomas 20"}
],
"orders" : [
{ "user" : "John",
"product" : "Software Suit I",
"date" : "2015-10-1 3:00 PM GMT+1:00"},
{ "user" : "Mike",
"product" : "Software Suit II",
"date" : "2016-10-1 4:00 PM GMT+2:00"},
{ "user" : "Stephen",
"product" : "Software Suit III",
"date" : "2017-10-1 4:00 PM GMT+2:00"},
{ "user" : "Thomas",
"product" : "Software Suit IV",
"date" : "2019-10-1 4:00 PM GMT+2:00"}
]
}