app.didpic.admin.listReports
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.admin.listReports",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"reports"
11
11
],
12
12
"properties": {
13
13
"cursor": {
14
14
"type": "string"
15
15
},
16
16
"reports": {
17
17
"type": "array",
18
18
"items": {
19
19
"type": "unknown"
20
20
}
21
21
}
22
22
}
23
23
},
24
24
"encoding": "application/json"
25
25
},
26
26
"parameters": {
27
27
"type": "params",
28
28
"properties": {
29
29
"limit": {
30
30
"type": "integer",
31
31
"default": 50,
32
32
"maximum": 200,
33
33
"minimum": 1
34
34
},
35
35
"cursor": {
36
36
"type": "string"
37
37
},
38
38
"status": {
39
39
"enum": [
40
40
"open",
41
41
"resolved",
42
42
"all"
43
43
],
44
44
"type": "string",
45
45
"default": "open"
46
46
}
47
47
}
48
48
},
49
-
"description": "Paginated list of moderation reports. Filter by status (open|resolved|all). Default: open."
49
+
"description": "List moderation reports."
50
50
}
51
51
},
52
52
"$type": "com.atproto.lexicon.schema",
53
53
"lexicon": 1
54
54
}