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

38 lines
819 B
JSON

{
"id": "app.bsky.notification.getUnreadCount",
"defs": {
"main": {
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"count"
],
"properties": {
"count": {
"type": "integer"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"seenAt": {
"type": "string",
"format": "datetime"
},
"priority": {
"type": "boolean"
}
}
},
"description": "Count the number of unread notifications for the requesting account. Requires auth."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}