atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.unspecced.getSuggestedUsers",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get a list of suggested users",
8 "parameters": {
9 "type": "params",
10 "properties": {
11 "category": {
12 "type": "string",
13 "description": "Category of users to get suggestions for."
14 },
15 "limit": {
16 "type": "integer",
17 "default": 25,
18 "minimum": 1,
19 "maximum": 50
20 }
21 }
22 },
23 "output": {
24 "encoding": "application/json",
25 "schema": {
26 "type": "object",
27 "required": [
28 "actors"
29 ],
30 "properties": {
31 "actors": {
32 "type": "array",
33 "items": {
34 "type": "ref",
35 "ref": "app.bsky.actor.defs#profileView"
36 }
37 }
38 }
39 }
40 }
41 }
42 }
43}