Files
bsky-social-app/lexicons/app/bsky/graph/muteThread.json

24 lines
564 B
JSON

{
"lexicon": 1,
"id": "app.bsky.graph.muteThread",
"defs": {
"main": {
"type": "procedure",
"description": "Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["root"],
"properties": {
"root": {
"type": "string",
"format": "at-uri"
}
}
}
}
}
}
}