-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
104 lines (104 loc) · 3.07 KB
/
db.json
File metadata and controls
104 lines (104 loc) · 3.07 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"students": [
{
"id": "1",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Neo",
"lastName": "Anderson",
"dateOfBirth": "1980-10-22",
"gender": "male",
"email": "neo.anderson@example.com",
"phone": "+1234567890"
},
{
"id": "2",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Leia",
"lastName": "Organa",
"dateOfBirth": "1977-05-25",
"gender": "female",
"email": "leia.organa@example.com",
"phone": "+1987654321"
},
{
"id": "3",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Luke",
"lastName": "Skywalker",
"dateOfBirth": "1977-05-25",
"gender": "male",
"email": "luke.skywalker@example.fr",
"phone": "1555123456"
},
{
"id": "4",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Sarah",
"lastName": "Connor",
"dateOfBirth": "1965-01-01",
"gender": "female",
"email": "sarah.connor@example.com",
"phone": "+1432123456"
},
{
"id": "5",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Marty",
"lastName": "McFly",
"dateOfBirth": "1968-06-12",
"gender": "male",
"email": "marty.mcfly@example.com",
"phone": "+1555123456"
},
{
"id": "6",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Ellen",
"lastName": "Ripley",
"dateOfBirth": "2092-02-07",
"gender": "female",
"email": "ellen.ripley@example.com",
"phone": "+1123456789"
},
{
"id": "7",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Arthur",
"lastName": "Dent",
"dateOfBirth": "2066-03-11",
"gender": "male",
"email": "arthur.dent@example.com",
"phone": "+1123456789"
},
{
"id": "8",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Princess",
"lastName": "Leia",
"dateOfBirth": "1981-04-21",
"gender": "female",
"email": "princess.leia@example.com",
"phone": "+1123456789"
},
{
"id": "9",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Hal",
"lastName": "9000",
"dateOfBirth": "1997-01-12",
"gender": "male",
"email": "hal.9000@example.com",
"phone": "+1123456789"
},
{
"id": "10",
"photo": "https://i.pinimg.com/originals/e5/85/7e/e5857ef6157b5613393b20b0c52e3b49.png",
"firstName": "Trinity",
"lastName": "Moss",
"dateOfBirth": "1996-11-27",
"gender": "female",
"email": "trinity.moss@example.com",
"phone": "+1123456789"
}
]
}