Skip to main content

com.atproto.sync.subscribeRepos

#main

Repository event stream, aka Firehose endpoint. Outputs repo commits with diff data, and identity update events, for all repositories on the current server. See the atproto specifications for details around stream sequencing, repo versioning, CAR diff format, and more. Public and does not require auth; implemented by PDS and Relay.

Input

PropertyTypeKnown ValuesRequiredDescription
cursorinteger-The last known event seq number to backfill from.

Output

PropertyTypeKnown ValuesRequiredDescription
refsunion of
#commit
#sync
#identity
#account
#info
--

#commit

Represents an update of repository state. Note that empty commits are allowed, which include no repo data changes, but an update to rev and signature.

PropertyTypeKnown ValuesRequiredDescription
seqinteger-The stream sequence number of this message.
rebaseboolean-DEPRECATED -- unused
tooBigboolean-DEPRECATED -- replaced by #sync event and data limits. Indicates that this commit contained too many ops, or data size was too large. Consumers will need to make a separate request to get missing data.
repostring (did)-The repo this event comes from. Note that all other message types name this field 'did'.
commitcid-link-Repo commit object CID.
revstring (tid)-The rev of the emitted commit. Note that this information is also in the commit object included in blocks, unless this is a tooBig event.
sincestring (tid)-The rev of the last emitted commit from this repo (if any).
blocksbytes-CAR file containing relevant blocks, as a diff since the previous repo state. The commit must be included as a block, and the commit block CID must be the first entry in the CAR header 'roots' list.
opsarray of #repoOp--
blobsarray of cid-link--
prevDatacid-link-The root CID of the MST tree for the previous commit from this repo (indicated by the 'since' revision field in this message). Corresponds to the 'data' field in the repo commit object. NOTE: this field is effectively required for the 'inductive' version of firehose.
timestring (datetime)-Timestamp of when this message was originally broadcast.

#sync

Updates the repo to a new state, without necessarily including that state on the firehose. Used to recover from broken commit streams, data loss incidents, or in situations where upstream host does not know recent state of the repository.

PropertyTypeKnown ValuesRequiredDescription
seqinteger-The stream sequence number of this message.
didstring (did)-The account this repo event corresponds to. Must match that in the commit object.
blocksbytes-CAR file containing the commit, as a block. The CAR header must include the commit block CID as the first 'root'.
revstring-The rev of the commit. This value must match that in the commit object.
timestring (datetime)-Timestamp of when this message was originally broadcast.

#identity

Represents a change to an account's identity. Could be an updated handle, signing key, or pds hosting endpoint. Serves as a prod to all downstream services to refresh their identity cache.

PropertyTypeKnown ValuesRequiredDescription
seqinteger--
didstring (did)--
timestring (datetime)--
handlestring (handle)-The current handle for the account, or 'handle.invalid' if validation fails. This field is optional, might have been validated or passed-through from an upstream source. Semantics and behaviors for PDS vs Relay may evolve in the future; see atproto specs for more details.

#account

Represents a change to an account's status on a host (eg, PDS or Relay). The semantics of this event are that the status is at the host which emitted the event, not necessarily that at the currently active PDS. Eg, a Relay takedown would emit a takedown with active=false, even if the PDS is still active.

PropertyTypeKnown ValuesRequiredDescription
seqinteger--
didstring (did)--
timestring (datetime)--
activeboolean-Indicates that the account has a repository which can be fetched from the host that emitted this event.
statusstringtakendown
suspended
deleted
deactivated
desynchronized
throttled
If active=false, this optional field indicates a reason for why the account is not active.

#info

PropertyTypeKnown ValuesRequiredDescription
namestringOutdatedCursor-
messagestring--

#repoOp

A repo operation, ie a mutation of a single record.

PropertyTypeKnown ValuesRequiredDescription
actionstringcreate
update
delete
-
pathstring--
cidcid-link-For creates and updates, the new record CID. For deletions, null.
prevcid-link-For updates and deletes, the previous record CID (required for inductive firehose). For creations, field should not be defined.