* use full profile in suggested users response * Codegen * Changeset --------- Co-authored-by: Eric Bailey <git@esb.lol>
42 lines
947 B
JSON
42 lines
947 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.unspecced.getSuggestedUsers",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Get a list of suggested users",
|
|
"parameters": {
|
|
"type": "params",
|
|
"properties": {
|
|
"category": {
|
|
"type": "string",
|
|
"description": "Category of users to get suggestions for."
|
|
},
|
|
"limit": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 50,
|
|
"default": 25
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["actors"],
|
|
"properties": {
|
|
"actors": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.actor.defs#profileView"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|