# lol.atmobin.bookmark

> Published by [chris.pardy.family](https://lexicon.garden/identity/did:plc:dp7v5b5kejmmzzpwmqyf5wj6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dp7v5b5kejmmzzpwmqyf5wj6/lol.atmobin.bookmark)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dp7v5b5kejmmzzpwmqyf5wj6/lol.atmobin.bookmark/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dp7v5b5kejmmzzpwmqyf5wj6/lol.atmobin.bookmark/examples)

## Definitions

### `lol.atmobin.bookmark`

**Type**: `record`

A private-ish bookmark of a record (it still lives in your public repo). The rkey is a hash of the subject URI so each account can bookmark a subject at most once.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | No | Snapshot of the subject's title at bookmark time. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "lol.atmobin.bookmark",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 1280,
            "description": "Snapshot of the subject's title at bookmark time.",
            "maxGraphemes": 128
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A private-ish bookmark of a record (it still lives in your public repo). The rkey is a hash of the subject URI so each account can bookmark a subject at most once."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
