atproto blogging
at main 67 lines 1.6 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.feed.getQuotes", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get a list of quotes for a given post.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "uri" 12 ], 13 "properties": { 14 "cid": { 15 "type": "string", 16 "description": "If supplied, filters to quotes of specific version (by CID) of the post record.", 17 "format": "cid" 18 }, 19 "cursor": { 20 "type": "string" 21 }, 22 "limit": { 23 "type": "integer", 24 "default": 50, 25 "minimum": 1, 26 "maximum": 100 27 }, 28 "uri": { 29 "type": "string", 30 "description": "Reference (AT-URI) of post record", 31 "format": "at-uri" 32 } 33 } 34 }, 35 "output": { 36 "encoding": "application/json", 37 "schema": { 38 "type": "object", 39 "required": [ 40 "uri", 41 "posts" 42 ], 43 "properties": { 44 "cid": { 45 "type": "string", 46 "format": "cid" 47 }, 48 "cursor": { 49 "type": "string" 50 }, 51 "posts": { 52 "type": "array", 53 "items": { 54 "type": "ref", 55 "ref": "app.bsky.feed.defs#postView" 56 } 57 }, 58 "uri": { 59 "type": "string", 60 "format": "at-uri" 61 } 62 } 63 } 64 } 65 } 66 } 67}