app.didpic.admin.listAuditLog
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.admin.listAuditLog",
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
"entries"
11
11
],
12
12
"properties": {
13
13
"cursor": {
14
14
"type": "string"
15
15
},
16
16
"entries": {
17
17
"type": "array",
18
18
"items": {
19
19
"type": "object",
20
20
"required": [
21
21
"id",
22
22
"action",
23
23
"source",
24
24
"createdAt"
25
25
],
26
26
"properties": {
27
27
"id": {
28
28
"type": "string"
29
29
},
30
30
"action": {
31
31
"type": "string"
32
32
},
33
33
"source": {
34
34
"enum": [
35
35
"oauth",
36
36
"token"
37
37
],
38
38
"type": "string"
39
39
},
40
40
"details": {
41
41
"type": "unknown"
42
42
},
43
43
"actorDid": {
44
44
"type": "string",
45
45
"format": "did"
46
46
},
47
47
"createdAt": {
48
48
"type": "string",
49
49
"format": "datetime"
50
50
}
51
51
}
52
52
}
53
53
}
54
54
}
55
55
},
56
56
"encoding": "application/json"
57
57
},
58
58
"parameters": {
59
59
"type": "params",
60
60
"properties": {
61
61
"limit": {
62
62
"type": "integer",
63
63
"default": 50,
64
64
"maximum": 200,
65
65
"minimum": 1
66
66
},
67
67
"cursor": {
68
68
"type": "string"
69
69
}
70
70
}
71
71
},
72
-
"description": "Paginated audit_log entries — role grants, queue resolutions, rescan triggers, etc. Distinct from mod_action (which logs label/takedown/suspend events on subjects)."
72
+
"description": "List audit log entries."
73
73
}
74
74
},
75
75
"$type": "com.atproto.lexicon.schema",
76
76
"lexicon": 1
77
77
}