atproto blogging
at main 36 lines 897 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.bookmark.createBookmark", 4 "defs": { 5 "main": { 6 "type": "procedure", 7 "description": "Creates 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 "cid" 15 ], 16 "properties": { 17 "cid": { 18 "type": "string", 19 "format": "cid" 20 }, 21 "uri": { 22 "type": "string", 23 "format": "at-uri" 24 } 25 } 26 } 27 }, 28 "errors": [ 29 { 30 "description": "The URI to be bookmarked is for an unsupported collection.", 31 "name": "UnsupportedCollection" 32 } 33 ] 34 } 35 } 36}