comAtprotoSyncGetRecord top-level constant
com.atproto.sync.getRecord
Implementation
const comAtprotoSyncGetRecord = <String, dynamic>{
"lexicon": 1,
"id": "com.atproto.sync.getRecord",
"defs": {
"main": {
"type": "query",
"description":
"Get data blocks needed to prove the existence or non-existence of record in the current version of repo. Does not require auth.",
"parameters": {
"type": "params",
"required": ["did", "collection", "rkey"],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID of the repo."
},
"collection": {"type": "string", "format": "nsid"},
"rkey": {"type": "string", "description": "Record Key"},
"commit": {
"type": "string",
"format": "cid",
"description":
"DEPRECATED: referenced a repo commit by CID, and retrieved record as of that commit"
}
}
},
"output": {"encoding": "application/vnd.ipld.car"},
"errors": [
{"name": "RecordNotFound"},
{"name": "RepoNotFound"},
{"name": "RepoTakendown"},
{"name": "RepoSuspended"},
{"name": "RepoDeactivated"}
]
}
}
};