# social.coves.actor.block

> Published by [coves.social](https://lexicon.garden/identity/did:web:coves.social)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.actor.block)
- [Documentation](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.actor.block/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.actor.block/examples)

## Definitions

### `social.coves.actor.block`

**Type**: `record`

Record declaring a block relationship against another user. Blocks are public and one-directional: only the blocker's view is affected.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | DID of the user being blocked |
| `createdAt` | `string` (datetime) | Yes | When the block was created |

## Raw Schema

```json
{
  "id": "social.coves.actor.block",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the user being blocked"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the block was created"
          }
        }
      },
      "description": "Record declaring a block relationship against another user. Blocks are public and one-directional: only the blocker's view is affected."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
