Files
bsky-social-app/lexicons/chat/bsky/moderation/updateActorAccess.json

29 lines
584 B
JSON

{
"lexicon": 1,
"id": "chat.bsky.moderation.updateActorAccess",
"defs": {
"main": {
"type": "procedure",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["actor", "allowAccess"],
"properties": {
"actor": {
"type": "string",
"format": "did"
},
"allowAccess": {
"type": "boolean"
},
"ref": {
"type": "string"
}
}
}
}
}
}
}