app.tempomusic.graph.block

lexicons.tempomusic.fan

Documentation

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.

main record

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.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when this block was originally created.

subject string did Required

DID of the account to be blocked.

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."
}

Lexicon Garden

@