Files
bsky-social-app/lexicons/chat/bsky/notification/putPreferences.json

40 lines
1.0 KiB
JSON

{
"lexicon": 1,
"id": "chat.bsky.notification.putPreferences",
"defs": {
"main": {
"type": "procedure",
"description": "Set the requesting account's chat notification preferences. Only the provided preferences are updated; omitted preferences are left unchanged.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"properties": {
"chat": {
"type": "ref",
"ref": "chat.bsky.notification.defs#chatPreference"
},
"chatRequest": {
"type": "ref",
"ref": "chat.bsky.notification.defs#chatPreference"
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["preferences"],
"properties": {
"preferences": {
"type": "ref",
"ref": "chat.bsky.notification.defs#preferences"
}
}
}
}
}
}
}