Record declaring a 'block' relationship against another account, mirroring app.bsky.graph.block. NOTE: like every repo record, blocks are public — the AppView indexes them to enforce visibility (viewer-relative feed filtering, global reply suppression between blocked pairs, notification suppression). Deleting the record lifts the block; the v1 mobile client exposes no unblock UI but the AppView projects deletes from day one.
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"format": "did",
"description": "DID of the account to be blocked."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this block was originally created."
}
}
},
"description": "Record declaring a 'block' relationship against another account, mirroring app.bsky.graph.block. NOTE: like every repo record, blocks are public — the AppView indexes them to enforce visibility (viewer-relative feed filtering, global reply suppression between blocked pairs, notification suppression). Deleting the record lifts the block; the v1 mobile client exposes no unblock UI but the AppView projects deletes from day one."
}