atproto blogging
at main 60 lines 1.3 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.feed.getActorLikes", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get a list of posts liked by an actor. Requires auth, actor must be the requesting account.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "actor" 12 ], 13 "properties": { 14 "actor": { 15 "type": "string", 16 "format": "at-identifier" 17 }, 18 "cursor": { 19 "type": "string" 20 }, 21 "limit": { 22 "type": "integer", 23 "default": 50, 24 "minimum": 1, 25 "maximum": 100 26 } 27 } 28 }, 29 "output": { 30 "encoding": "application/json", 31 "schema": { 32 "type": "object", 33 "required": [ 34 "feed" 35 ], 36 "properties": { 37 "cursor": { 38 "type": "string" 39 }, 40 "feed": { 41 "type": "array", 42 "items": { 43 "type": "ref", 44 "ref": "app.bsky.feed.defs#feedViewPost" 45 } 46 } 47 } 48 } 49 }, 50 "errors": [ 51 { 52 "name": "BlockedActor" 53 }, 54 { 55 "name": "BlockedByActor" 56 } 57 ] 58 } 59 } 60}