# today.cacao.bookmarks.bookmark

> Published by [bookmarks.cacao.today](https://lexicon.garden/identity/did:plc:bbfepkfzgfshj5gwrhci3m7r)

✓ This is the authoritative definition for this NSID.

## Description

An extension of community.lexicon.bookmarks.bookmark adding a user-supplied title for the bookmarked link.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:bbfepkfzgfshj5gwrhci3m7r/today.cacao.bookmarks.bookmark)
- [Documentation](https://lexicon.garden/lexicon/did:plc:bbfepkfzgfshj5gwrhci3m7r/today.cacao.bookmarks.bookmark/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:bbfepkfzgfshj5gwrhci3m7r/today.cacao.bookmarks.bookmark/examples)

## Definitions

### `today.cacao.bookmarks.bookmark`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes | User-supplied title for the bookmarked link. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the canonical community.lexicon.bookmarks.bookmark record. |
| `createdAt` | `string` (datetime) | Yes | When the user created this extension record. |

## Raw Schema

```json
{
  "id": "today.cacao.bookmarks.bookmark",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "title",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "description": "User-supplied title for the bookmarked link.",
            "maxGraphemes": 200
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference to the canonical community.lexicon.bookmarks.bookmark record."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the user created this extension record."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "An extension of community.lexicon.bookmarks.bookmark adding a user-supplied title for the bookmarked link."
}
```
