Files
bsky-social-app/lexicons/chat/bsky/convo/muteConvo.json
2026-08-13 12:26:12 -07:00

46 lines
957 B
JSON

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