File: user_data.py

package info (click to toggle)
python-crownstone-cloud 1.4.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: python: 1,126; makefile: 4
file content (47 lines) | stat: -rw-r--r-- 1,375 bytes parent folder | download
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
user_data = {
    "admins": [
        {
            "firstName": "I am",
            "lastName": "Awesome",
            "new": False,
            "uploadLocation": True,
            "uploadSwitchState": True,
            "uploadDeviceDetails": True,
            "email": "example@example.com",
            "emailVerified": True,
            "id": "i_am_awesome_id",
            "createdAt": "date_created",
            "updatedAt": "date_updated"
        }
    ],
    "members": [
        {
            "firstName": "You are",
            "lastName": "Awesome",
            "new": False,
            "uploadLocation": True,
            "uploadSwitchState": True,
            "uploadDeviceDetails": True,
            "email": "example@example.com",
            "emailVerified": True,
            "id": "you_are_awesome_id",
            "createdAt": "date_created",
            "updatedAt": "date_updated"
        }
    ],
    "guests": [
        {
            "firstName": "We are",
            "lastName": "Awesome",
            "new": False,
            "uploadLocation": True,
            "uploadSwitchState": True,
            "uploadDeviceDetails": True,
            "email": "example@example.com",
            "emailVerified": True,
            "id": "we_are_awesome_id",
            "createdAt": "date_created",
            "updatedAt": "date_updated"
        }
    ]
}