Backfill in-progress. Some lexicons and records may be missing or incomplete.

com.atproto.sync.getRepoStatus

atproto-lexicons.bsky.social

Documentation

main query

Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.

Parameters

did string did Required

The DID of the repo.

Output

Encodingapplication/json
active boolean Required

No description provided.

did stringdid Required

A decentralized identifier (DID).

rev stringtid Optional

Optional field, the current rev of the repo, if active=true

status string Optional

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.

Known values: takendown, suspended, deleted, deactivated, desynchronized, throttled

Errors

RepoNotFound
Try It

Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.

These methods interact directly with Personal Data Servers and require careful handling. Use a dedicated client or CLI tool instead.
View raw schema
{
  "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."
}

Lexicon Garden

@