# blue.rito.private.feed.bookmark

> Published by [rito.blue](https://lexicon.garden/identity/did:plc:xnkb4hzxcuqbvwk5np7awf2u)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.private.feed.bookmark)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.private.feed.bookmark/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xnkb4hzxcuqbvwk5np7awf2u/blue.rito.private.feed.bookmark/examples)

## Definitions

### `blue.rito.private.feed.bookmark`

**Type**: `record`

Records a private bookmark within a permissioned repo.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Tags describing the uri's description (max 10 tags, 25 charactors) |
| `subject` | `string` (uri) | Yes |  |
| `comments` | `array` | Yes | Title and comment in different languages. |
| `ogpImage` | `string` (uri) | No | OGP Image Uri |
| `ogpTitle` | `string` | No | OGP Title |
| `createdAt` | `string` (datetime) | Yes |  |
| `ogpDescription` | `string` | No | OGP Description |

### `blue.rito.private.feed.bookmark#locale`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `lang` | `string` | Yes | Comments Language |
| `title` | `string` | Yes | URI's title |
| `comment` | `string` | No | URI's comment. It can use GitHub Flavored Markdown. |

## Raw Schema

```json
{
  "id": "blue.rito.private.feed.bookmark",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "comments",
          "subject",
          "createdAt"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 250,
              "minLength": 1,
              "maxGraphemes": 25,
              "minGraphemes": 1
            },
            "maxLength": 10,
            "description": "Tags describing the uri's description (max 10 tags, 25 charactors)"
          },
          "subject": {
            "type": "string",
            "format": "uri"
          },
          "comments": {
            "type": "array",
            "items": {
              "ref": "blue.rito.private.feed.bookmark#locale",
              "type": "ref"
            },
            "minLength": 1,
            "description": "Title and comment in different languages."
          },
          "ogpImage": {
            "type": "string",
            "format": "uri",
            "description": "OGP Image Uri"
          },
          "ogpTitle": {
            "type": "string",
            "description": "OGP Title"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "ogpDescription": {
            "type": "string",
            "description": "OGP Description"
          }
        }
      },
      "description": "Records a private bookmark within a permissioned repo."
    },
    "locale": {
      "type": "object",
      "required": [
        "lang",
        "title"
      ],
      "properties": {
        "lang": {
          "enum": [
            "ja",
            "en"
          ],
          "type": "string",
          "maxLength": 6,
          "description": "Comments Language"
        },
        "title": {
          "type": "string",
          "maxLength": 500,
          "description": "URI's title",
          "maxGraphemes": 50
        },
        "comment": {
          "type": "string",
          "maxLength": 100000,
          "description": "URI's comment. It can use GitHub Flavored Markdown.",
          "maxGraphemes": 10000
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
