atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.unspecced.getSuggestedUsersSkeleton",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers",
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 "viewer": {
22 "type": "string",
23 "description": "DID of the account making the request (not included for public/unauthenticated queries).",
24 "format": "did"
25 }
26 }
27 },
28 "output": {
29 "encoding": "application/json",
30 "schema": {
31 "type": "object",
32 "required": [
33 "dids"
34 ],
35 "properties": {
36 "dids": {
37 "type": "array",
38 "items": {
39 "type": "string",
40 "format": "did"
41 }
42 }
43 }
44 }
45 }
46 }
47 }
48}