# org.shelfcheck.book.dismissed

> Published by [nowell.strite.org](https://lexicon.garden/identity/did:plc:wjr7uktrlvrqbgkbdp3svmjw)

✓ This is the authoritative definition for this NSID.

## Description

A book the user has explicitly dismissed from suggestions (e.g. 'do not show me this work again on the authors page'). Distinct from a shelf entry: it carries no reading state, only the intent to suppress.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:wjr7uktrlvrqbgkbdp3svmjw/org.shelfcheck.book.dismissed)
- [Documentation](https://lexicon.garden/lexicon/did:plc:wjr7uktrlvrqbgkbdp3svmjw/org.shelfcheck.book.dismissed/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:wjr7uktrlvrqbgkbdp3svmjw/org.shelfcheck.book.dismissed/examples)

## Definitions

### `org.shelfcheck.book.dismissed`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `ids` | `ref` → `org.shelfcheck.defs#bookIds` | Yes |  |
| `title` | `string` | No |  |
| `reason` | `string` | No |  |
| `authors` | `array` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "org.shelfcheck.book.dismissed",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "ids",
          "createdAt"
        ],
        "properties": {
          "ids": {
            "ref": "org.shelfcheck.defs#bookIds",
            "type": "ref"
          },
          "title": {
            "type": "string",
            "maxLength": 1024
          },
          "reason": {
            "type": "string",
            "maxLength": 1024
          },
          "authors": {
            "type": "array",
            "items": {
              "ref": "org.shelfcheck.defs#authorRef",
              "type": "ref"
            },
            "maxLength": 32
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A book the user has explicitly dismissed from suggestions (e.g. 'do not show me this work again on the authors page'). Distinct from a shelf entry: it carries no reading state, only the intent to suppress."
}
```
