43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"lexicon": 1,
|
|
"id": "chat.bsky.convo.listConvoRequests",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests are returned as joinRequestView.",
|
|
"parameters": {
|
|
"type": "params",
|
|
"properties": {
|
|
"limit": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 100,
|
|
"default": 50
|
|
},
|
|
"cursor": { "type": "string" }
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["requests"],
|
|
"properties": {
|
|
"cursor": { "type": "string" },
|
|
"requests": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "union",
|
|
"refs": [
|
|
"chat.bsky.convo.defs#convoView",
|
|
"chat.bsky.group.defs#joinRequestView"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|