# community.lexicon.bookmarks.bookmark

> Published by [lexicons.lexicon.community](https://lexicon.garden/identity/did:plc:mtr7qrqtcyseedx3jyr5o7db)

✓ This is the authoritative definition for this NSID.

## Links

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

## Definitions

### `community.lexicon.bookmarks.bookmark`

**Type**: `record`

Record bookmarking a link to come back to later.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Tags for content the bookmark may be related to, for example 'news' or 'funny videos' |
| `subject` | `string` (uri) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "community.lexicon.bookmarks.bookmark",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Tags for content the bookmark may be related to, for example 'news' or 'funny videos'"
          },
          "subject": {
            "type": "string",
            "format": "uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record bookmarking a link to come back to later."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
