bnewbold 9579bec720
update descriptions in Lexicons (#2110)
* lexicons: update descriptions in com.atproto.*

* lexicons: update descriptions in app.bsky.*

* Apply suggestions from code review

Thanks Emily!

Co-authored-by: Emily Liu <emilyliu7321@gmail.com>

* codegen description-only Lexicon updates

---------

Co-authored-by: Emily Liu <emilyliu7321@gmail.com>
2024-02-11 16:06:58 -08:00

21 lines
492 B
JSON

{
"lexicon": 1,
"id": "app.bsky.notification.updateSeen",
"defs": {
"main": {
"type": "procedure",
"description": "Notify server that the requesting account has seen notifications. Requires auth.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["seenAt"],
"properties": {
"seenAt": { "type": "string", "format": "datetime" }
}
}
}
}
}
}