# social.colibri.beta.actor.mute

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.actor.mute)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.actor.mute/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.actor.mute/examples)

## Definitions

### `social.colibri.beta.actor.mute`

**Type**: `record`

A muted subject. One record per mute, so unmuting is a delete rather than a rewrite of a list.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `union` | Yes | What is muted. A user or a community is named by DID, a channel by its space. |
| `createdAt` | `string` (datetime) | Yes | When the mute was created. |

## Raw Schema

```json
{
  "id": "social.colibri.beta.actor.mute",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "refs": [
              "social.colibri.beta.actor.defs#mutedActor",
              "social.colibri.beta.actor.defs#mutedChannel"
            ],
            "type": "union",
            "closed": true,
            "description": "What is muted. A user or a community is named by DID, a channel by its space."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the mute was created."
          }
        }
      },
      "description": "A muted subject. One record per mute, so unmuting is a delete rather than a rewrite of a list."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
