{
"id": "pub.oysters.getActorPosts",
"defs": {
"main": {
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "No account here by that DID or handle. An account this board has never seen is not an error the caller can fix, but it is still not found."
},
{
"name": "InvalidRequest",
"description": "The actor is neither a DID nor a resolvable handle."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"feed"
],
"properties": {
"feed": {
"type": "array",
"items": {
"ref": "pub.oysters.defs#postView",
"type": "ref"
},
"description": "The page, newest first."
},
"cursor": {
"type": "string",
"description": "Pass to the next call. Absent when there is nothing more."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier",
"description": "A DID, or a handle to resolve."
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "How many submissions to return."
},
"cursor": {
"type": "string",
"description": "Opaque. Pass back what the previous page returned."
}
}
},
"description": "One account's submissions, most recently indexed first."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}