# at.askimut.graph.block

> Published by [ask.3615etienne.com](https://lexicon.garden/identity/did:plc:7yidlxzkmtk2d5zwljdlhg3f)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.graph.block)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.graph.block/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7yidlxzkmtk2d5zwljdlhg3f/at.askimut.graph.block/examples)

## Definitions

### `at.askimut.graph.block`

**Type**: `record`

Record declaring a block relationship against another account.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | DID of the account to block. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "at.askimut.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 block."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record declaring a block relationship against another account."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
