# bond.biblio.defs

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

✓ This is the authoritative definition for this NSID.

## Description

Shared definitions for the biblio.bond reading attestation system

## Links

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

## Definitions

### `bond.biblio.defs#bookRequirement`

**Type**: `object`

A required book for a reading list, specified by title and authors for fuzzy matching

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes |  |
| `authors` | `string` | Yes | Author name(s), tab-separated for multiple |

## Raw Schema

```json
{
  "id": "bond.biblio.defs",
  "defs": {
    "bookRequirement": {
      "type": "object",
      "required": [
        "title",
        "authors"
      ],
      "properties": {
        "title": {
          "type": "string",
          "maxLength": 500,
          "maxGraphemes": 200
        },
        "authors": {
          "type": "string",
          "maxLength": 500,
          "description": "Author name(s), tab-separated for multiple",
          "maxGraphemes": 200
        }
      },
      "description": "A required book for a reading list, specified by title and authors for fuzzy matching"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Shared definitions for the biblio.bond reading attestation system"
}
```
