atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.bookmark.deleteBookmark",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Deletes a private bookmark for the specified record. Currently, only `app.bsky.feed.post` records are supported. Requires authentication.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "uri"
14 ],
15 "properties": {
16 "uri": {
17 "type": "string",
18 "format": "at-uri"
19 }
20 }
21 }
22 },
23 "errors": [
24 {
25 "description": "The URI to be bookmarked is for an unsupported collection.",
26 "name": "UnsupportedCollection"
27 }
28 ]
29 }
30 }
31}