-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexample_data.json
More file actions
47 lines (47 loc) · 1.29 KB
/
example_data.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"polling": {
"interval": 1,
"start_minute": 420,
"end_minute": 1140
},
"rooms": [
{
"id": "room_awesome",
"name": "Awesome Room",
"description": "10, Display, Aircon, Wifi, Cats",
"bookings": [
{
"username": "Alice",
"description": "Innovation day brainstorm",
"start_minute": 540,
"end_minute": 570
},
{
"username": "Bob",
"description": "Lunch",
"start_minute": 840,
"end_minute": 900
},
{
"username": "Alice",
"description": "<Private>",
"start_minute": 1020,
"end_minute": 1080
}
]
},
{
"id": "room_boring",
"name": "Boring Room",
"description": "4",
"bookings": [
{
"username": "Eve",
"description": "Innovation day brainstorm",
"start_minute": 540,
"end_minute": 1020
}
]
}
]
}