# art.graphik.library

> Published by [graphik.art](https://lexicon.garden/identity/did:plc:3vr6kzmrdua5wlmb755uvjfu)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:3vr6kzmrdua5wlmb755uvjfu/art.graphik.library)
- [Documentation](https://lexicon.garden/lexicon/did:plc:3vr6kzmrdua5wlmb755uvjfu/art.graphik.library/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:3vr6kzmrdua5wlmb755uvjfu/art.graphik.library/examples)

## Definitions

### `art.graphik.library`

**Type**: `record`

A series on the reader's shelf. Not the same as a follow: following is a public statement that feeds a creator's follower count, shelving is 'this is mine'. Readers commonly do one without the other.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No | The reader's own note about the series. |
| `shelf` | `string` | No |  |
| `series` | `string` (at-uri) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "art.graphik.library",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "series",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxLength": 4000,
            "description": "The reader's own note about the series.",
            "maxGraphemes": 400
          },
          "shelf": {
            "type": "string",
            "maxLength": 16,
            "knownValues": [
              "reading",
              "planned",
              "completed",
              "paused",
              "dropped"
            ]
          },
          "series": {
            "type": "string",
            "format": "at-uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A series on the reader's shelf. Not the same as a follow: following is a public statement that feeds a creator's follower count, shelving is 'this is mine'. Readers commonly do one without the other."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
