# app.tempomusic.graph.block

> Published by [lexicons.tempomusic.fan](https://lexicon.garden/identity/did:plc:pxsuqmultto34oks44m2lgxm)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.graph.block)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.graph.block/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pxsuqmultto34oks44m2lgxm/app.tempomusic.graph.block/examples)

## Definitions

### `app.tempomusic.graph.block`

**Type**: `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.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | DID of the account to be blocked. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this block was originally created. |

## Raw Schema

```json
{
  "id": "app.tempomusic.graph.block",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
