# bond.biblio.list

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

✓ This is the authoritative definition for this NSID.

## Description

A curated reading challenge. Librarians define book requirements with a deadline; readers apply books; librarians issue stamps for verified completion.

## Links

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

## Definitions

### `bond.biblio.list`

**Type**: `record`

A reading list curated by a librarian

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `books` | `array` | Yes | Required books for this reading challenge |
| `title` | `string` | Yes | Display name for the reading list |
| `duedate` | `string` (datetime) | Yes | Deadline for completing the reading challenge |
| `createdAt` | `string` (datetime) | Yes | When this list was created |
| `librarians` | `array` | Yes | DIDs of users who can issue stamps for this list |
| `description` | `string` | No | Description of the reading challenge |

## Raw Schema

```json
{
  "id": "bond.biblio.list",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "librarians",
          "books",
          "duedate",
          "createdAt"
        ],
        "properties": {
          "books": {
            "type": "array",
            "items": {
              "ref": "bond.biblio.defs#bookRequirement",
              "type": "ref"
            },
            "description": "Required books for this reading challenge"
          },
          "title": {
            "type": "string",
            "maxLength": 200,
            "description": "Display name for the reading list",
            "maxGraphemes": 100
          },
          "duedate": {
            "type": "string",
            "format": "datetime",
            "description": "Deadline for completing the reading challenge"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this list was created"
          },
          "librarians": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did"
            },
            "description": "DIDs of users who can issue stamps for this list"
          },
          "description": {
            "type": "string",
            "maxLength": 2000,
            "description": "Description of the reading challenge",
            "maxGraphemes": 1000
          }
        }
      },
      "description": "A reading list curated by a librarian"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A curated reading challenge. Librarians define book requirements with a deadline; readers apply books; librarians issue stamps for verified completion."
}
```
