# com.cultureblocs.annotation

> Published by [cultureblocs.com](https://lexicon.garden/identity/did:plc:l3726um33xesakwqhjkkpoet)

✓ This is the authoritative definition for this NSID.

## Links

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

## Definitions

### `com.cultureblocs.annotation`

**Type**: `record`

A bookmark/note about a specific work, typically minted by the AR gallery app at the moment of recognition. Meaningful entirely on its own — no bead required.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `geo` | `ref` → `com.cultureblocs.defs#geo` | No |  |
| `note` | `string` | No |  |
| `work` | `ref` → `com.cultureblocs.defs#workRef` | Yes |  |
| `media` | `array` | No |  |
| `images` | `array` | No | Published images as imageRefs. Tier 0 records use `media` (local refs); the promoter uploads the bytes and maps alt + aspectRatio across at publish time. |
| `context` | `ref` → `com.cultureblocs.defs#strongRef` | No | Optional exhibition or event record this annotation was made within. |
| `createdAt` | `string` (datetime) | Yes |  |
| `provenance` | `ref` → `com.cultureblocs.defs#provenance` | No |  |
| `matchConfidence` | `string` | No | How the work was identified: cosine embedding match, ORB geometric verification, or manual entry. |

## Raw Schema

```json
{
  "id": "com.cultureblocs.annotation",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "work"
        ],
        "properties": {
          "geo": {
            "ref": "com.cultureblocs.defs#geo",
            "type": "ref"
          },
          "note": {
            "type": "string",
            "maxGraphemes": 3000
          },
          "work": {
            "ref": "com.cultureblocs.defs#workRef",
            "type": "ref"
          },
          "media": {
            "type": "array",
            "items": {
              "ref": "com.cultureblocs.defs#mediaRef",
              "type": "ref"
            },
            "maxLength": 10
          },
          "images": {
            "type": "array",
            "items": {
              "ref": "com.cultureblocs.defs#imageRef",
              "type": "ref"
            },
            "maxLength": 10,
            "description": "Published images as imageRefs. Tier 0 records use `media` (local refs); the promoter uploads the bytes and maps alt + aspectRatio across at publish time."
          },
          "context": {
            "ref": "com.cultureblocs.defs#strongRef",
            "type": "ref",
            "description": "Optional exhibition or event record this annotation was made within."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "provenance": {
            "ref": "com.cultureblocs.defs#provenance",
            "type": "ref"
          },
          "matchConfidence": {
            "type": "string",
            "description": "How the work was identified: cosine embedding match, ORB geometric verification, or manual entry.",
            "knownValues": [
              "embedding",
              "geometric",
              "manual"
            ]
          }
        }
      },
      "description": "A bookmark/note about a specific work, typically minted by the AR gallery app at the moment of recognition. Meaningful entirely on its own — no bead required."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
