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>
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.actor.searchActors",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Find actors (profiles) matching search criteria. Does not require auth.",
|
|
"parameters": {
|
|
"type": "params",
|
|
"properties": {
|
|
"term": {
|
|
"type": "string",
|
|
"description": "DEPRECATED: use 'q' instead."
|
|
},
|
|
"q": {
|
|
"type": "string",
|
|
"description": "Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended."
|
|
},
|
|
"limit": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 100,
|
|
"default": 25
|
|
},
|
|
"cursor": { "type": "string" }
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["actors"],
|
|
"properties": {
|
|
"cursor": { "type": "string" },
|
|
"actors": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.actor.defs#profileView"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|