Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this record was originally created.
subject
string
did
Required
DID of the account being followed.
via
ref
com.atproto.repo.strongRef
Optional
Optional strong reference to a record that mediated this follow (e.g. a starter pack or other curated list). Mirrors the optional `via` field on app.bsky.graph.follow; the referenced record may conform with any lexicon.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"via": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Optional strong reference to a record that mediated this follow (e.g. a starter pack or other curated list). Mirrors the optional `via` field on app.bsky.graph.follow; the referenced record may conform with any lexicon."
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the account being followed."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created."
}
}
},
"description": "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView."
}