-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.json
115 lines (115 loc) · 3.55 KB
/
user.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"username": "ExampleUser",
"email": "[email protected]",
"preferences": {
"theme": "light",
"toolbox": ["killer", "arrow"],
"etc": "etc"
},
"following": [
"ExampleUser2",
"ExampleUser3"
],
"puzzles": [{
"id": "BHEmoOVhw7",
"name": "Puzzle In Progress",
"rules": "Normal Sudoku rules apply.\nStandard Killer.\nStandard Arrow.",
"state": "unpublished",
"puzzle": "base64stuff"
},
{
"id": "Eu550bG9nm",
"name": "Puzzle In Testing",
"author": "ExampleUser",
"rules": "Normal Sudoku rules apply.",
"testing_datetime": "2021-07-11T04:01:23.000Z",
"state": "testing",
"license": "CC BY-NC-SA 4.0",
"expected_difficulty": 3,
"puzzle": "base64stuff",
"solution": "base64stuff",
"tags": ["Killer", "Arrow"],
"test_solves": [{
"username": "Simon",
"datetime": "2021-07-11T12:01:23.000Z",
"approved": true
},
{
"username": "Mark",
"datetime": "2021-07-11T14:10:34.000Z",
"approved": true
}
],
"difficulty": {
"Simon": 3,
"Mark": 2
},
"likes": [
"Simon",
"Mark"
],
"testing_comments": [{
"author": "Simon",
"datetime": "2021-07-11T12:01:23.000Z",
"comment": "Testing comment"
},
{
"author": "Mark",
"datetime": "2021-07-11T14:10:34.000Z",
"comment": "Testing comment"
}
]
},
{
"id": "ExULBder7m",
"name": "Published Puzzle",
"author": "ExampleUser and ExampleUser2",
"rules": "Normal Sudoku rules apply.",
"state": "published",
"license": "CC BY-NC-SA 4.0",
"expected_difficulty": 3,
"puzzle": "base64stuff",
"solution": "base64stuff",
"tags": ["Classic"],
"guest_solves": 2,
"solves": [{
"username": "Simon",
"datetime": "2021-07-11T12:01:23.000Z",
"approved": true
},
{
"username": "Mark",
"datetime": "2021-07-11T14:10:34.000Z",
"approved": true
}
],
"difficulty": {
"Simon": 2,
"Mark": 1
},
"likes": [
"Simon"
],
"testing_comments": [{
"author": "Simon",
"comment": "Testing comment"
},
{
"author": "Mark",
"comment": "Testing comment"
}
],
"comments": [{
"author": "Simon",
"datetime": "2021-07-11T12:01:23.000Z",
"comment": "This is a comment ||with a spoiler||."
},
{
"author": "Mark",
"datetime": "2021-07-11T14:10:34.000Z",
"comment": "This is a comment"
}
]
}
]
}