# bond.biblio.book

> Published by [lilinch.biblio.bond](https://lexicon.garden/identity/did:plc:7gis4mztcfyc6lw4dujlhju6)

✓ This is the authoritative definition for this NSID.

## Description

A minimal book record for reading attestation. For rich metadata (ratings, reviews, covers), see buzz.bookhive.book.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7gis4mztcfyc6lw4dujlhju6/bond.biblio.book)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7gis4mztcfyc6lw4dujlhju6/bond.biblio.book/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7gis4mztcfyc6lw4dujlhju6/bond.biblio.book/examples)

## Definitions

### `bond.biblio.book`

**Type**: `record`

A book in the user's library

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `lists` | `array` | No | AT-URIs of reading lists this book is applied to |
| `title` | `string` | Yes | The book's title |
| `authors` | `string` | Yes | Author name(s). For multiple authors, use tab-separation for cross-lexicon compatibility with buzz.bookhive.book |
| `createdAt` | `string` (datetime) | Yes | When this record was created |

## Raw Schema

```json
{
  "id": "bond.biblio.book",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "authors",
          "createdAt"
        ],
        "properties": {
          "lists": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "description": "AT-URIs of reading lists this book is applied to"
          },
          "title": {
            "type": "string",
            "maxLength": 500,
            "description": "The book's title",
            "maxGraphemes": 200
          },
          "authors": {
            "type": "string",
            "maxLength": 2048,
            "description": "Author name(s). For multiple authors, use tab-separation for cross-lexicon compatibility with buzz.bookhive.book"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this record was created"
          }
        }
      },
      "description": "A book in the user's library"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A minimal book record for reading attestation. For rich metadata (ratings, reviews, covers), see buzz.bookhive.book."
}
```
