# com.kipclip.annotation

> Published by [kipclip.com](https://lexicon.garden/identity/did:plc:3zzkrrjtsmo7nnwnvhex3auj)

✓ This is the authoritative definition for this NSID.

## Description

Kipclip-specific metadata and notes for a bookmark

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:3zzkrrjtsmo7nnwnvhex3auj/com.kipclip.annotation)
- [Documentation](https://lexicon.garden/lexicon/did:plc:3zzkrrjtsmo7nnwnvhex3auj/com.kipclip.annotation/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:3zzkrrjtsmo7nnwnvhex3auj/com.kipclip.annotation/examples)

## Definitions

### `com.kipclip.annotation`

**Type**: `record`

Enrichment data and optional user note for a bookmark

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No | User note for this bookmark |
| `image` | `string` (uri) | No |  |
| `title` | `string` | No |  |
| `favicon` | `string` (uri) | No |  |
| `subject` | `string` (at-uri) | Yes | AT URI of the bookmark this annotates |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "com.kipclip.annotation",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxLength": 10000,
            "description": "User note for this bookmark"
          },
          "image": {
            "type": "string",
            "format": "uri"
          },
          "title": {
            "type": "string",
            "maxLength": 1000
          },
          "favicon": {
            "type": "string",
            "format": "uri"
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the bookmark this annotates"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 10000
          }
        }
      },
      "description": "Enrichment data and optional user note for a bookmark"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Kipclip-specific metadata and notes for a bookmark"
}
```
