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