-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.json
55 lines (55 loc) · 1.25 KB
/
database.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
module.exports = {
"films": ,
"cinemas": [
{
"uuid": "c123",
"name": "World Cinema Plus",
"location": {
"latitude": 59.883744,
"longitude": 30.268672
},
"url": "http://world-cinema-plus.com",
"films": ["f890", "f678", "f567", "f123", "f234"]
},
{
"uuid": "c234",
"name": "The Greatest Cinema",
"location": {
"latitude": 59.843103,
"longitude": 30.305378
},
"url": "http://the-greatest-cinema.com",
"films": ["f345", "f678"]
},
{
"uuid": "c345",
"name": "Watch your eyes",
"location": {
"latitude": 60.024840,
"longitude": 30.390167
},
"url": "http://watch-your-eyes.com",
"films": ["f123", "f345", "f456", "f567", "f789"]
},
{
"uuid": "c456",
"name": "Happy hours",
"location": {
"latitude": 59.828174,
"longitude": 30.377967
},
"url": "http://happy-hours.com",
"films": ["f234", "f456", "f789", "f890"]
},
{
"uuid": "c567",
"name": "Family Cinema",
"location": {
"latitude": 60.000354,
"longitude": 30.194079
},
"url": "http://family-cinema.com",
"films": ["f567", "f789"]
}
]
}