532681d5c0
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"id": "com.atproto.sync.getRepoStatus",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"errors": [
|
|
{
|
|
"name": "RepoNotFound"
|
|
}
|
|
],
|
|
"output": {
|
|
"schema": {
|
|
"type": "object",
|
|
"required": [
|
|
"did",
|
|
"active"
|
|
],
|
|
"properties": {
|
|
"did": {
|
|
"type": "string",
|
|
"format": "did"
|
|
},
|
|
"rev": {
|
|
"type": "string",
|
|
"format": "tid",
|
|
"description": "Optional field, the current rev of the repo, if active=true"
|
|
},
|
|
"active": {
|
|
"type": "boolean"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"description": "If active=false, this optional field indicates a possible reason for why the account is not active. If active=false and no status is supplied, then the host makes no claim for why the repository is no longer being hosted.",
|
|
"knownValues": [
|
|
"takendown",
|
|
"suspended",
|
|
"deleted",
|
|
"deactivated",
|
|
"desynchronized",
|
|
"throttled"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"encoding": "application/json"
|
|
},
|
|
"parameters": {
|
|
"type": "params",
|
|
"required": [
|
|
"did"
|
|
],
|
|
"properties": {
|
|
"did": {
|
|
"type": "string",
|
|
"format": "did",
|
|
"description": "The DID of the repo."
|
|
}
|
|
}
|
|
},
|
|
"description": "Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay."
|
|
}
|
|
},
|
|
"$type": "com.atproto.lexicon.schema",
|
|
"lexicon": 1
|
|
}
|