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/calendars.json
2025-04-04 08:28:07 +02:00

32 lines
791 B
JSON

{
"calendars": [
{
"id": "cal1",
"name": "Work Calendar",
"owner_id": "user1",
"description": "Main work calendar for team coordination",
"color": "#4285F4",
"shared_with": ["user2", "user3", "user4"],
"visibility": "team"
},
{
"id": "cal2",
"name": "Personal Calendar",
"owner_id": "user1",
"description": "Personal appointments and reminders",
"color": "#0F9D58",
"shared_with": ["user5"],
"visibility": "private"
},
{
"id": "cal3",
"name": "Project Calendar",
"owner_id": "user2",
"description": "Project-specific deadlines and milestones",
"color": "#DB4437",
"shared_with": ["user1", "user3", "user4"],
"visibility": "public"
}
]
}