backend/misc/sampledata.json

64 lines
992 B
JSON
Raw Normal View History

{
2025-07-07 12:10:52 +02:00
"groups": [
{
"id": 1,
"name": "auto"
},
{
"id": 2,
"name": "zug"
},
{
"id": 3,
"name": "flugzeug"
},
{
"id": 4,
"name": "fahrrad"
},
{
"id": 5,
"name": "zu_fuß"
}
],
"admins": [
{
"name": "admin",
"email_address": "admin@example.org",
"password": "admin"
}
],
"members": [
{
2025-07-07 12:10:52 +02:00
"id": 1,
"name": "Alexandra Ahorn",
"email_address_private": "alex-rockt@example.org",
2025-07-07 12:10:52 +02:00
"groups": [1, 2, 3]
},
{
2025-07-07 12:10:52 +02:00
"id": 2,
"name": "Berthold Buche",
"email_address_private": "bert-ohne-ernie@example.org",
2025-07-07 12:10:52 +02:00
"groups": [4, 5, 2]
},
{
2025-07-07 12:10:52 +02:00
"id": 3,
"name": "Charlotte Castania",
"email_adress_private": "charly-the-unicorn@example.org",
2025-07-07 12:10:52 +02:00
"groups": [4, 1]
}
],
"invites": [
{
2025-07-07 12:10:52 +02:00
"id": 1,
2025-04-12 10:20:58 +00:00
"name_changeable": true,
"name_value": "Daniel Distel",
2025-04-12 10:20:58 +00:00
"email_address_changeable": true,
"email_address_value": "duesentrieb@example.org",
2025-04-12 10:20:58 +00:00
"groups_changeable": false,
2025-07-07 12:10:52 +02:00
"groups_value": [3, 5]
}
]
}