532681d5c0
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"id": "app.bsky.actor.getSuggestions",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"output": {
|
|
"schema": {
|
|
"type": "object",
|
|
"required": [
|
|
"actors"
|
|
],
|
|
"properties": {
|
|
"recId": {
|
|
"type": "integer",
|
|
"description": "DEPRECATED: use recIdStr instead."
|
|
},
|
|
"actors": {
|
|
"type": "array",
|
|
"items": {
|
|
"ref": "app.bsky.actor.defs#profileView",
|
|
"type": "ref"
|
|
}
|
|
},
|
|
"cursor": {
|
|
"type": "string"
|
|
},
|
|
"recIdStr": {
|
|
"type": "string",
|
|
"description": "Snowflake for this recommendation, use when submitting recommendation events."
|
|
}
|
|
}
|
|
},
|
|
"encoding": "application/json"
|
|
},
|
|
"parameters": {
|
|
"type": "params",
|
|
"properties": {
|
|
"limit": {
|
|
"type": "integer",
|
|
"default": 50,
|
|
"maximum": 100,
|
|
"minimum": 1
|
|
},
|
|
"cursor": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"description": "Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding."
|
|
}
|
|
},
|
|
"$type": "com.atproto.lexicon.schema",
|
|
"lexicon": 1
|
|
}
|