532681d5c0
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
74 lines
1.6 KiB
JSON
74 lines
1.6 KiB
JSON
{
|
|
"id": "com.atproto.sync.listBlobs",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"errors": [
|
|
{
|
|
"name": "RepoNotFound"
|
|
},
|
|
{
|
|
"name": "RepoTakendown"
|
|
},
|
|
{
|
|
"name": "RepoSuspended"
|
|
},
|
|
{
|
|
"name": "RepoDeactivated"
|
|
}
|
|
],
|
|
"output": {
|
|
"schema": {
|
|
"type": "object",
|
|
"required": [
|
|
"cids"
|
|
],
|
|
"properties": {
|
|
"cids": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"format": "cid"
|
|
}
|
|
},
|
|
"cursor": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"encoding": "application/json"
|
|
},
|
|
"parameters": {
|
|
"type": "params",
|
|
"required": [
|
|
"did"
|
|
],
|
|
"properties": {
|
|
"did": {
|
|
"type": "string",
|
|
"format": "did",
|
|
"description": "The DID of the repo."
|
|
},
|
|
"limit": {
|
|
"type": "integer",
|
|
"default": 500,
|
|
"maximum": 1000,
|
|
"minimum": 1
|
|
},
|
|
"since": {
|
|
"type": "string",
|
|
"format": "tid",
|
|
"description": "Optional revision of the repo to list blobs since."
|
|
},
|
|
"cursor": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"description": "List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS."
|
|
}
|
|
},
|
|
"$type": "com.atproto.lexicon.schema",
|
|
"lexicon": 1
|
|
}
|