9579bec720
* lexicons: update descriptions in com.atproto.* * lexicons: update descriptions in app.bsky.* * Apply suggestions from code review Thanks Emily! Co-authored-by: Emily Liu <emilyliu7321@gmail.com> * codegen description-only Lexicon updates --------- Co-authored-by: Emily Liu <emilyliu7321@gmail.com>
36 lines
956 B
JSON
36 lines
956 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.feed.getPosts",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.",
|
|
"parameters": {
|
|
"type": "params",
|
|
"required": ["uris"],
|
|
"properties": {
|
|
"uris": {
|
|
"type": "array",
|
|
"description": "List of post AT-URIs to return hydrated views for.",
|
|
"items": { "type": "string", "format": "at-uri" },
|
|
"maxLength": 25
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["posts"],
|
|
"properties": {
|
|
"posts": {
|
|
"type": "array",
|
|
"items": { "type": "ref", "ref": "app.bsky.feed.defs#postView" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|