com.suibari.nagi.reaction

suibari.com

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

bluemoji ref #bluemojiRef Optional

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

emoji string Required

A single Unicode emoji, or the colon-wrapped alias of the referenced Bluemoji (fallback text).

maxLength: 64 bytesmaxGraphemes: 34 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "emoji",
      "createdAt"
    ],
    "properties": {
      "emoji": {
        "type": "string",
        "maxLength": 64,
        "description": "A single Unicode emoji, or the colon-wrapped alias of the referenced Bluemoji (fallback text).",
        "maxGraphemes": 34
      },
      "subject": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref"
      },
      "bluemoji": {
        "ref": "#bluemojiRef",
        "type": "ref"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  }
}
bluemojiRef object

Reference to a blue.moji.collection.item record. Formats are intentionally not carried here: the AppView resolves them from its own index of the source item, which is the trust anchor.

Properties

alt string Optional

No description available.

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
cid string cid Required

A content identifier (CID) referencing immutable data.

name string Required

Colon-wrapped alias of the Bluemoji, e.g. :blobcat:. Must equal the record's emoji field.

maxLength: 64 bytes
uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid",
    "name"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 1000,
      "maxGraphemes": 100
    },
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "name": {
      "type": "string",
      "maxLength": 64,
      "description": "Colon-wrapped alias of the Bluemoji, e.g. :blobcat:. Must equal the record's emoji field."
    }
  },
  "description": "Reference to a blue.moji.collection.item record. Formats are intentionally not carried here: the AppView resolves them from its own index of the source item, which is the trust anchor."
}

Lexicon Garden

@