-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendars_mock.json
More file actions
127 lines (127 loc) · 3.08 KB
/
Copy pathcalendars_mock.json
File metadata and controls
127 lines (127 loc) · 3.08 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
{
"date": "2026-06-24",
"participants": {
"Alice": {
"location": "New York, USA",
"timezone": "America/New_York",
"working_hours": {
"start": "09:00",
"end": "17:00"
},
"busy_slots": [
{
"start": "2026-06-24T10:00:00",
"end": "2026-06-24T11:00:00",
"priority": "high",
"description": "Client Sync"
},
{
"start": "2026-06-24T12:00:00",
"end": "2026-06-24T13:00:00",
"priority": "low",
"description": "Lunch Break"
},
{
"start": "2026-06-24T15:00:00",
"end": "2026-06-24T16:00:00",
"priority": "high",
"description": "Team Retrospective"
}
]
},
"Bob": {
"location": "London, UK",
"timezone": "Europe/London",
"working_hours": {
"start": "09:00",
"end": "17:00"
},
"busy_slots": [
{
"start": "2026-06-24T09:30:00",
"end": "2026-06-24T10:30:00",
"priority": "high",
"description": "Standup"
},
{
"start": "2026-06-24T13:00:00",
"end": "2026-06-24T14:00:00",
"priority": "low",
"description": "Focus block"
},
{
"start": "2026-06-24T16:00:00",
"end": "2026-06-24T17:00:00",
"priority": "high",
"description": "Weekly Planning"
}
]
},
"Charlie": {
"location": "Tokyo, Japan",
"timezone": "Asia/Tokyo",
"working_hours": {
"start": "09:00",
"end": "17:00"
},
"busy_slots": [
{
"start": "2026-06-24T10:00:00",
"end": "2026-06-24T11:00:00",
"priority": "high",
"description": "Daily Update"
},
{
"start": "2026-06-24T14:00:00",
"end": "2026-06-24T15:30:00",
"priority": "low",
"description": "Code Review (Internal)"
}
]
},
"David": {
"location": "Sydney, Australia",
"timezone": "Australia/Sydney",
"working_hours": {
"start": "09:00",
"end": "17:00"
},
"busy_slots": [
{
"start": "2026-06-24T11:00:00",
"end": "2026-06-24T12:00:00",
"priority": "high",
"description": "Design Review"
},
{
"start": "2026-06-24T15:00:00",
"end": "2026-06-24T16:00:00",
"priority": "low",
"description": "Admin Tasks"
}
]
},
"Eve": {
"location": "Bangalore, India",
"timezone": "Asia/Kolkata",
"working_hours": {
"start": "09:00",
"end": "17:00"
},
"busy_slots": [
{
"start": "2026-06-24T11:30:00",
"end": "2026-06-24T12:30:00",
"priority": "high",
"description": "Client Demo"
},
{
"start": "2026-06-24T16:00:00",
"end": "2026-06-24T17:10:00",
"priority": "high",
"description": "Status Check-in"
}
]
}
}
}