This repository has been archived on 2025-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
rhaj/database/data/events.json
2025-04-04 08:28:07 +02:00

58 lines
1.6 KiB
JSON

{
"events": [
{
"id": "event1",
"title": "Team Meeting",
"description": "Weekly team sync meeting",
"start_time": "2025-04-04T10:00:00",
"end_time": "2025-04-04T11:00:00",
"location": "Conference Room A",
"calendar_id": "cal1",
"organizer_id": "user1",
"attendees": ["user1", "user2", "user3"],
"recurring": false,
"status": "confirmed"
},
{
"id": "event2",
"title": "Project Deadline",
"description": "Final submission for Q2 project",
"start_time": "2025-04-15T17:00:00",
"end_time": "2025-04-15T18:00:00",
"location": "Virtual",
"calendar_id": "cal1",
"organizer_id": "user2",
"attendees": ["user1", "user2", "user4"],
"recurring": false,
"status": "confirmed"
},
{
"id": "event3",
"title": "Lunch with Client",
"description": "Discuss upcoming partnership",
"start_time": "2025-04-10T12:30:00",
"end_time": "2025-04-10T14:00:00",
"location": "Downtown Cafe",
"calendar_id": "cal2",
"organizer_id": "user1",
"attendees": ["user1", "user5"],
"recurring": false,
"status": "tentative"
},
{
"id": "event4",
"title": "Weekly Status Update",
"description": "Regular status update meeting",
"start_time": "2025-04-05T09:00:00",
"end_time": "2025-04-05T09:30:00",
"location": "Conference Room B",
"calendar_id": "cal1",
"organizer_id": "user3",
"attendees": ["user1", "user2", "user3", "user4"],
"recurring": true,
"recurrence_pattern": "weekly",
"status": "confirmed"
}
]
}