35 lines
808 B
JSON
35 lines
808 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "chat.bsky.convo.muteConvo",
|
|
"defs": {
|
|
"main": {
|
|
"type": "procedure",
|
|
"description": "Mutes a conversation, preventing notifications related to it.",
|
|
"errors": [{ "name": "InvalidConvo" }],
|
|
"input": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["convoId"],
|
|
"properties": {
|
|
"convoId": { "type": "string" }
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["convo"],
|
|
"properties": {
|
|
"convo": {
|
|
"type": "ref",
|
|
"ref": "chat.bsky.convo.defs#convoView"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|