app.didpic.admin.listScans
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.admin.listScans",
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
"scans"
11
11
],
12
12
"properties": {
13
13
"scans": {
14
14
"type": "array",
15
15
"items": {
16
16
"ref": "#scan",
17
17
"type": "ref"
18
18
}
19
19
},
20
20
"cursor": {
21
21
"type": "string"
22
22
}
23
23
}
24
24
},
25
25
"encoding": "application/json"
26
26
},
27
27
"parameters": {
28
28
"type": "params",
29
29
"properties": {
30
30
"kind": {
31
31
"enum": [
32
32
"post",
33
33
"comment",
34
34
"avatar",
35
35
"banner"
36
36
],
37
37
"type": "string"
38
38
},
39
39
"label": {
40
40
"enum": [
41
41
"nsfw",
42
42
"clean",
43
43
"review"
44
44
],
45
45
"type": "string"
46
46
},
47
47
"limit": {
48
48
"type": "integer",
49
49
"default": 50,
50
50
"maximum": 200,
51
51
"minimum": 1
52
52
},
53
53
"cursor": {
54
54
"type": "string"
55
55
},
56
56
"provider": {
57
57
"type": "string"
58
58
}
59
59
}
60
60
},
61
-
"description": "Paginated moderation scan history. Filter by label / kind / provider."
61
+
"description": "List moderation scans."
62
62
},
63
63
"scan": {
64
64
"type": "object",
65
65
"required": [
66
66
"id",
67
67
"kind",
68
68
"subjectDid",
69
69
"subjectImageCid",
70
70
"provider",
71
71
"scores",
72
72
"scannedAt"
73
73
],
74
74
"properties": {
75
75
"id": {
76
76
"type": "string"
77
77
},
78
78
"kind": {
79
79
"type": "string"
80
80
},
81
81
"label": {
82
82
"type": "string"
83
83
},
84
84
"scores": {
85
85
"type": "unknown"
86
86
},
87
87
"provider": {
88
88
"type": "string"
89
89
},
90
90
"scannedAt": {
91
91
"type": "string",
92
92
"format": "datetime"
93
93
},
94
94
"subjectDid": {
95
95
"type": "string",
96
96
"format": "did"
97
97
},
98
98
"subjectUri": {
99
99
"type": "string",
100
100
"format": "at-uri"
101
101
},
102
102
"subjectImageCid": {
103
103
"type": "string",
104
104
"format": "cid"
105
105
}
106
106
}
107
107
}
108
108
},
109
109
"$type": "com.atproto.lexicon.schema",
110
110
"lexicon": 1
111
111
}