atproto blogging
1{
2 "lexicon": 1,
3 "id": "tools.ozone.moderation.getReporterStats",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get reporter stats for a list of users.",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "dids"
12 ],
13 "properties": {
14 "dids": {
15 "type": "array",
16 "items": {
17 "type": "string",
18 "format": "did"
19 },
20 "maxLength": 100
21 }
22 }
23 },
24 "output": {
25 "encoding": "application/json",
26 "schema": {
27 "type": "object",
28 "required": [
29 "stats"
30 ],
31 "properties": {
32 "stats": {
33 "type": "array",
34 "items": {
35 "type": "ref",
36 "ref": "tools.ozone.moderation.defs#reporterStats"
37 }
38 }
39 }
40 }
41 }
42 }
43 }
44}