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

44 lines
792 B
JSON

{
"id": "chat.bsky.notification.defs",
"defs": {
"preferences": {
"type": "object",
"required": [
"chat",
"chatRequest"
],
"properties": {
"chat": {
"ref": "#chatPreference",
"type": "ref"
},
"chatRequest": {
"ref": "#chatPreference",
"type": "ref"
}
}
},
"chatPreference": {
"type": "object",
"required": [
"include",
"push"
],
"properties": {
"push": {
"type": "boolean"
},
"include": {
"type": "string",
"knownValues": [
"all",
"follows"
]
}
}
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}