-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
170 lines (170 loc) · 3.57 KB
/
db.json
File metadata and controls
170 lines (170 loc) · 3.57 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"seller": [
{
"id": "1",
"firstName": "John",
"surname": "Smith",
"phone": "020-7946-0958",
"address": "15 Baker Street",
"postcode": "NW1 6XE"
},
{
"id": "2",
"firstName": "Sarah",
"surname": "Johnson",
"phone": "0161-496-0623",
"address": "42 Oxford Road",
"postcode": "M13 9GP"
},
{
"id": "3",
"firstName": "Michael",
"surname": "Brown",
"phone": "0117-925-8547",
"address": "78 Park Avenue",
"postcode": "BS1 5TR"
},
{
"id": "4",
"firstName": "Emma",
"surname": "Davis",
"phone": "0121-632-1479",
"address": "23 High Street",
"postcode": "B2 4QA"
},
{
"id": "5",
"firstName": "James",
"surname": "Wilson",
"phone": "0113-258-9632",
"address": "67 Victoria Road",
"postcode": "LS1 6DL"
},
{
"id": "6",
"firstName": "Lucy",
"surname": "Taylor",
"phone": "0114-275-8963",
"address": "89 Church Lane",
"postcode": "S1 2HE"
},
{
"id": "7",
"firstName": "David",
"surname": "Anderson",
"phone": "0191-478-2654",
"address": "34 Market Square",
"postcode": "NE1 6JG"
},
{
"id": "8",
"firstName": "Sophie",
"surname": "Thomas",
"phone": "01273-456-789",
"address": "56 Queens Road",
"postcode": "BN1 3XB"
},
{
"id": "9",
"firstName": "Robert",
"surname": "Jackson",
"phone": "01865-234-567",
"address": "12 Cornmarket Street",
"postcode": "OX1 3EX"
},
{
"id": "10",
"firstName": "Hannah",
"surname": "White",
"phone": "01223-654-321",
"address": "91 Mill Road",
"postcode": "CB1 2AW"
},
{
"id": "5d8b",
"firstName": "Sophie",
"surname": "Jamieson",
"phone": "01273-456-789",
"address": "56 Queens Road",
"postcode": "BN1 3XB"
}
],
"property": [
{
"id": "1",
"address": "34 OK Place, OK Town",
"postcode": "OK1 1OK",
"type": "DETACHED",
"price": 100000,
"bedroom": 3,
"bathroom": 1,
"garden": 0,
"sellerId": 1,
"status": "SOLD",
"buyerId": 3
},
{
"id": "2",
"address": "Somewhere House, Some Street, Some City",
"postcode": "SO1 2ME",
"type": "APARTMENT",
"price": 200000,
"bedroom": 1,
"bathroom": 1,
"garden": 0,
"sellerId": 1,
"status": "SOLD",
"buyerId": 3
},
{
"address": "2 Welsh Street, Ebbw Vale",
"postcode": "TR1 1GA",
"type": "DETACHED",
"price": 125000,
"bedroom": 1,
"bathroom": 1,
"garden": 1,
"sellerId": 3,
"status": "FOR SALE",
"id": "3"
},
{
"address": "8 Hilltop, Ebbw Vale",
"postcode": "EB1 2VA",
"type": "DETACHED",
"price": 99000,
"bedroom": 3,
"bathroom": 3,
"garden": 1,
"sellerId": 4,
"status": "SOLD",
"id": "4"
}
],
"buyer": [
{
"id": "1",
"firstName": "Cookie",
"surname": "Cat",
"address": "42 Pen-y-lan Road, Cardiff",
"postcode": "CA1 8RR",
"phone": ""
},
{
"id": "2",
"firstName": "Nilla",
"surname": "Cat",
"address": "100 Magor Road, Newport",
"postcode": "NP1 2LL",
"phone": ""
},
{
"firstName": "Monty",
"surname": "Dog",
"address": "Very Rich Street, London",
"postcode": "W1",
"phone": "",
"id": "3"
}
]
}