9579bec720
* lexicons: update descriptions in com.atproto.* * lexicons: update descriptions in app.bsky.* * Apply suggestions from code review Thanks Emily! Co-authored-by: Emily Liu <emilyliu7321@gmail.com> * codegen description-only Lexicon updates --------- Co-authored-by: Emily Liu <emilyliu7321@gmail.com>
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.graph.getFollows",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Enumerates accounts which a specified account (actor) follows.",
|
|
"parameters": {
|
|
"type": "params",
|
|
"required": ["actor"],
|
|
"properties": {
|
|
"actor": { "type": "string", "format": "at-identifier" },
|
|
"limit": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 100,
|
|
"default": 50
|
|
},
|
|
"cursor": { "type": "string" }
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["subject", "follows"],
|
|
"properties": {
|
|
"subject": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.actor.defs#profileView"
|
|
},
|
|
"cursor": { "type": "string" },
|
|
"follows": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.actor.defs#profileView"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|