{ "lexicon": 1, "id": "app.bsky.feed.getQuotes", "defs": { "main": { "type": "query", "description": "Get a list of quotes for a given post.", "parameters": { "type": "params", "required": ["uri"], "properties": { "uri": { "type": "string", "format": "at-uri", "description": "Reference (AT-URI) of post record" }, "cid": { "type": "string", "format": "cid", "description": "If supplied, filters to quotes of specific version (by CID) of the post record." }, "limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 50 }, "cursor": { "type": "string" } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["uri", "posts"], "properties": { "uri": { "type": "string", "format": "at-uri" }, "cid": { "type": "string", "format": "cid" }, "cursor": { "type": "string" }, "posts": { "type": "array", "items": { "type": "ref", "ref": "app.bsky.feed.defs#postView" } } } } } } } }