# app.standard-reader.graph.mute

> Published by [standard-reader.app](https://lexicon.garden/identity/did:plc:f4os2wz5fjl56xpwcvtnqu7m)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.graph.mute)
- [Documentation](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.graph.mute/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:f4os2wz5fjl56xpwcvtnqu7m/app.standard-reader.graph.mute/examples)

## Definitions

### `app.standard-reader.graph.mute`

**Type**: `record`

Mutes a subject for this reader: either a user (a DID) or a publication (the AT-URI of its site.standard.publication record). Presence of the record means muted; deleting it unmutes. The rkey is derived from the subject so each subject maps to a single record. Muted subjects are hidden from the reader's feeds and discovery surfaces, but direct navigation still works and subscriptions are untouched.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` | Yes | The muted subject: a user DID (did:...) or the AT-URI of a site.standard.publication record (at://...). |
| `createdAt` | `string` (datetime) | Yes | When the reader muted the subject. |

## Raw Schema

```json
{
  "id": "app.standard-reader.graph.mute",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "maxLength": 2048,
            "description": "The muted subject: a user DID (did:...) or the AT-URI of a site.standard.publication record (at://...)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the reader muted the subject."
          }
        }
      },
      "description": "Mutes a subject for this reader: either a user (a DID) or a publication (the AT-URI of its site.standard.publication record). Presence of the record means muted; deleting it unmutes. The rkey is derived from the subject so each subject maps to a single record. Muted subjects are hidden from the reader's feeds and discovery surfaces, but direct navigation still works and subscriptions are untouched."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
