-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
88 lines (88 loc) · 2.54 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
{
"users": [
{
"id": "1",
"firstName": "Animesh",
"lastName": "Roy",
"email": "[email protected]",
"age": 21,
"companyId": "1"
},
{
"id": "2",
"firstName": "Rahul",
"lastName": "Sharma",
"email": "[email protected]",
"age": 20,
"companyId": "1"
},
{
"id": "3",
"firstName": "Mark",
"lastName": "Tyson",
"email": "[email protected]",
"age": 22,
"companyId": "1"
},
{
"id": "4",
"firstName": "Saurav",
"lastName": "Kumar",
"email": "[email protected]",
"age": 24,
"companyId": "1"
}
],
"companies": [
{
"id": "1",
"name": "Apple",
"logo": "https://cdn.mos.cms.futurecdn.net/MFHVMYQCeJHMGop4u8VkzJ-1200-80.jpg",
"description": "Apple Inc. is an American multinational technology company headquartered in Cupertino, California, that designs, develops, and sells consumer electronics, computer software, and online services. It is considered one of the Big Four technology companies, alongside Amazon, Google, and Microsoft."
},
{
"id": "2",
"name": "Microsoft",
"logo": "https://stepshot.net/wp-content/uploads/2017/10/Microsoft-logo.jpg",
"description": "Microsoft Corporation is an American multinational technology company with headquarters in Redmond, Washington. It develops, manufactures, licenses, supports, and sells computer software, consumer electronics, personal computers, and related services."
},
{
"id": "3",
"name": "Google",
"logo": "https://voluntarysupport.org.uk/wp-content/uploads/2018/07/Google_logo.jpg",
"description": "Google Inc., American search engine company, founded in 1998 by Sergey Brin and Larry Page, that is a subsidiary of the holding company Alphabet Inc. More than 70 percent of worldwide online search requests are handled by Google, placing it at the heart of most Internet users' experience."
}
],
"contacts": [
{
"name": "Animesh Roy",
"country": "India",
"phone": "2322984953",
"id": 1
},
{
"name": "Aakash Choudhury",
"country": "USA",
"phone": "4930384837",
"id": 2
},
{
"name": "Arun Dey",
"country": "Brazil",
"phone": "5748493812",
"id": 3
},
{
"name": "Vikash Choudhury",
"country": "New Zeland",
"phone": "9873625261",
"id": 4
},
{
"name": "Gaurav Gupta",
"country": "Russia",
"phone": "7002873284",
"id": 5
}
]
}