backend/data/example.json

187 lines
3.9 KiB
JSON
Raw Normal View History

2024-09-09 12:13:10 +02:00
{
"users": [
{
"id": 1,
2024-09-18 18:17:25 +02:00
"name": "alice",
"email_address": "alice@example.org",
"password": "alice"
2024-09-09 12:13:10 +02:00
},
{
"id": 2,
2024-09-18 18:17:25 +02:00
"name": "bob",
"email_address": "bob@example.org",
"password": "bob"
2024-09-09 12:13:10 +02:00
},
{
"id": 3,
2024-09-18 18:17:25 +02:00
"name": "charlie",
"email_address": "charlie@example.org",
"password": "charlie"
2024-09-09 12:13:10 +02:00
}
],
"calendars": [
{
2024-09-11 20:19:13 +02:00
"id": 1,
2024-09-18 18:17:25 +02:00
"name": "house",
2024-09-21 10:56:00 +02:00
"access": {
"default_level": "none",
"attributed": [
{
"user_id": 1,
"level": "edit"
}
]
},
2024-09-18 18:17:25 +02:00
"resource": {
"kind": "local",
2024-09-09 12:13:10 +02:00
"data": {
"events": [
{
2024-09-18 18:17:25 +02:00
"name": "clean floors",
2024-09-09 12:13:10 +02:00
"begin": {
"timezone_shift": 2,
2024-09-18 18:17:25 +02:00
"date": {"year": 2024, "month": 9, "day": 21},
2024-09-09 12:13:10 +02:00
"time": {"hour": 10, "minute": 0, "second": 0}
},
2024-09-11 17:24:20 +02:00
"end": {
"timezone_shift": 2,
2024-09-18 18:17:25 +02:00
"date": {"year": 2024, "month": 9, "day": 21},
"time": {"hour": 11, "minute": 0, "second": 0}
2024-09-11 17:24:20 +02:00
},
2024-09-18 18:17:25 +02:00
"location": "1st floor",
2024-09-09 12:13:10 +02:00
"description": null
2024-09-19 01:40:12 +02:00
},
{
"name": "clean bathroom",
"begin": {
"timezone_shift": 2,
"date": {"year": 2024, "month": 9, "day": 28},
"time": {"hour": 10, "minute": 0, "second": 0}
},
"end": {
"timezone_shift": 2,
"date": {"year": 2024, "month": 9, "day": 28},
"time": {"hour": 11, "minute": 0, "second": 0}
},
"location": "1st floor",
"description": null
},
{
"name": "clean kitchen",
"begin": {
"timezone_shift": 2,
"date": {"year": 2024, "month": 10, "day": 5},
"time": {"hour": 10, "minute": 0, "second": 0}
},
"end": {
"timezone_shift": 2,
"date": {"year": 2024, "month": 10, "day": 5},
"time": {"hour": 11, "minute": 0, "second": 0}
},
"location": "1st floor",
"description": null
2024-09-09 12:13:10 +02:00
}
]
}
}
},
{
2024-09-11 20:19:13 +02:00
"id": 2,
2024-09-18 18:17:25 +02:00
"name": "turf",
2024-09-21 10:56:00 +02:00
"access": {
"default_level": "none",
"attributed": [
{
"user_id": 1,
"level": "view"
},
{
"user_id": 2,
"level": "edit"
}
]
},
2024-09-18 18:17:25 +02:00
"resource": {
"kind": "local",
2024-09-09 12:13:10 +02:00
"data": {
"events": [
{
2024-09-18 18:17:25 +02:00
"name": "garden party",
2024-09-09 12:13:10 +02:00
"begin": {
"timezone_shift": 2,
2024-09-19 01:40:12 +02:00
"date": {"year": 2024, "month": 9, "day": 20},
2024-09-11 17:24:20 +02:00
"time": {"hour": 18, "minute": 0, "second": 0}
},
"end": {
"timezone_shift": 2,
2024-09-19 01:40:12 +02:00
"date": {"year": 2024, "month": 9, "day": 20},
2024-09-18 18:17:25 +02:00
"time": {"hour": 23, "minute": 0, "second": 0}
2024-09-11 17:24:20 +02:00
},
2024-09-18 18:17:25 +02:00
"location": "bob's garden",
2024-09-09 21:01:02 +02:00
"description": null
2024-09-19 01:40:12 +02:00
},
{
"name": "build bird's retreat",
"begin": {
"timezone_shift": 2,
"date": {"year": 2024, "month": 9, "day": 25},
"time": {"hour": 18, "minute": 0, "second": 0}
},
"end": {
"timezone_shift": 2,
"date": {"year": 2024, "month": 9, "day": 25},
"time": {"hour": 23, "minute": 0, "second": 0}
},
"location": "dorothy's garage",
"description": null
2024-09-09 12:13:10 +02:00
}
]
}
}
},
{
2024-09-11 20:19:13 +02:00
"id": 3,
2024-09-18 18:17:25 +02:00
"name": "town",
2024-09-21 10:56:00 +02:00
"access": {
"default_level": "none",
"attributed": [
{
"user_id": 1,
"level": "view"
},
{
"user_id": 2,
"level": "view"
},
{
"user_id": 3,
"level": "edit"
}
]
},
2024-09-18 18:17:25 +02:00
"resource": {
"kind": "local",
2024-09-10 01:11:58 +02:00
"data": {
2024-09-11 17:24:20 +02:00
"events": [
{
2024-09-18 18:17:25 +02:00
"name": "ting",
2024-09-11 17:24:20 +02:00
"begin": {
"timezone_shift": 2,
2024-09-18 18:17:25 +02:00
"date": {"year": 2024, "month": 9, "day": 23},
2024-09-11 17:24:20 +02:00
"time": {"hour": 16, "minute": 0, "second": 0}
},
"end": {
"timezone_shift": 2,
2024-09-18 18:17:25 +02:00
"date": {"year": 2024, "month": 9, "day": 23},
"time": {"hour": 18, "minute": 0, "second": 0}
2024-09-11 17:24:20 +02:00
},
2024-09-18 18:17:25 +02:00
"location": "market square",
2024-09-11 17:24:20 +02:00
"description": null
}
]
2024-09-10 01:11:58 +02:00
}
}
2024-09-09 12:13:10 +02:00
}
]
}