Files
bsky-social-app/lexicons/chat/bsky/group/editJoinLink.json
T
2026-08-13 12:26:12 -07:00

59 lines
1.2 KiB
JSON

{
"id": "chat.bsky.group.editJoinLink",
"defs": {
"main": {
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"convoId"
],
"properties": {
"convoId": {
"type": "string"
},
"joinRule": {
"ref": "chat.bsky.group.defs#joinRule",
"type": "ref"
},
"requireApproval": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "InvalidConvo"
},
{
"name": "InsufficientRole"
},
{
"name": "NoJoinLink"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"joinLink"
],
"properties": {
"joinLink": {
"ref": "chat.bsky.group.defs#joinLinkView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Edits the existing join link settings for the group convo."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}