-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
128 lines (128 loc) · 3.23 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"employees": [
{
"id": 1,
"fullName": "Mark, 1",
"gender": "Male",
"contactPreference": "Email",
"email": "[email protected]",
"dateOfBirth": "2000-03-17T00:00:00.000Z",
"department": "3",
"isActive": true,
"photoPath": "../assets/Images/1.png",
"password": "a",
"confirmPassword": "a",
"phoneNumber": 2345978640
},
{
"id": 2,
"fullName": "Mary, 2",
"gender": "Female",
"contactPreference": "Phone",
"phoneNumber": 2345978640,
"dateOfBirth": "11/20/1979",
"department": "2",
"isActive": false,
"photoPath": "../assets/Images/3.jfif",
"password": "",
"confirmPassword": ""
},
{
"id": 3,
"fullName": "Nick, 3",
"gender": "Male",
"contactPreference": "Email",
"phoneNumber": 5432978640,
"dateOfBirth": "3/25/1976",
"department": "3",
"isActive": false,
"photoPath": "../assets/Images/2.jfif",
"password": "",
"confirmPassword": ""
},
{
"id": 4,
"fullName": "Annete, 4",
"gender": "Female",
"contactPreference": "Phone",
"phoneNumber": 5432978642,
"dateOfBirth": "4/22/1974",
"department": "3",
"isActive": true,
"photoPath": "../assets/Images/4.jfif",
"password": "",
"confirmPassword": ""
},
{
"id": 5,
"fullName": "Anton,5 ",
"gender": "Male",
"contactPreference": "Post",
"phoneNumber": 5432978641,
"dateOfBirth": "5/22/1975",
"department": "3",
"isActive": false,
"photoPath": "../assets/Images/5.jfif",
"password": "",
"confirmPassword": ""
}
],
"merchants": [
{
"id": 1,
"nif": "510774547",
"merchantName": "Suriaj LDA",
"repFullName": "Gheorghe Graur",
"contactPreference": "Phone",
"email": "[email protected]",
"phoneNumber": "+351969309119",
"mobileNumber": "+351969309119",
"addressForm": {
"addressLine1": "Rua Federico George N29",
"addressLine2": "Alto do Lumiar",
"addressLine3": null,
"town": "Lisboa",
"county": "Lisboa",
"postCode": "2140-536"
},
"isActive": true,
"logoPath": null
},
{
"id": 2,
"merchantName": "Alegria Partilhada LDA",
"repFullName": "Gheorghe Graur",
"email": "[email protected]",
"nif": "514279699",
"country": {
"name": "Portugal",
"code": "PT",
"capital": "Lisbon",
"region": "EU",
"currency": {
"code": "EUR",
"name": "Euro",
"symbol": "€"
},
"language": {
"code": "pt",
"name": "Portuguese"
},
"flag": "https://restcountries.eu/data/prt.svg"
},
"address": {
"addressLine1": "Rua Federico George N29",
"addressLine2": "Alto do Lumiar",
"addressLine3": "Alto do Lumiar",
"town": "Lisboa",
"county": "Lisboa",
"postCode": "2140-536"
},
"phoneNumber": "+351969309119",
"mobileNumber": "+351969309119",
"contactPreference": "Phone",
"isActive": true,
"logoPath": null
}
]
}