blue.moji.feed.reaction

moji.blue

Documentation

A custom-emoji reaction to a post. Analogous to app.bsky.feed.like, but the reaction glyph is a Bluemoji. Duplicate reactions (same subject + same emoji URI by the same actor) should be ignored by AppViews.

main record

A custom-emoji reaction to a post. Analogous to app.bsky.feed.like, but the reaction glyph is a Bluemoji. Duplicate reactions (same subject + same emoji URI by the same actor) should be ignored by AppViews.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

emoji ref #emojiRef Required

No description available.

subject string at-uri Required

AT-URI of the post being reacted to.

subjectCid string cid Optional

CID of the subject post at reaction time, for strong referencing.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "emoji",
      "createdAt"
    ],
    "properties": {
      "emoji": {
        "ref": "#emojiRef",
        "type": "ref"
      },
      "subject": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the post being reacted to."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "subjectCid": {
        "type": "string",
        "format": "cid",
        "description": "CID of the subject post at reaction time, for strong referencing."
      }
    }
  },
  "description": "A custom-emoji reaction to a post. Analogous to app.bsky.feed.like, but the reaction glyph is a Bluemoji. Duplicate reactions (same subject + same emoji URI by the same actor) should be ignored by AppViews."
}
emojiRef object

Denormalized reference to the Bluemoji used, mirroring blue.moji.richtext.facet: CID-only formats let consumers build blob/CDN URLs without a getRecord round-trip. AppViews should verify against the indexed item where possible.

Properties

adultOnly boolean Optional

MUST be populated by AppViews from the source item's adultOnly at hydration time (the source item is the trust anchor; do not trust a reactor-supplied value on write). Consumers SHOULD warn or blur before rendering when true, consistent with how the same item's adultOnly is handled elsewhere (facets, collection views).

alt string Optional

No description available.

cid string cid Optional

CID of the blue.moji.collection.item record, populated by AppViews at hydration time (like adultOnly) so consumers can build a com.atproto.repo.strongRef for moderation reports without a separate lookup. Not meaningful on write.

name string Required

Colon-wrapped alias, e.g. :blobcat:. Used as fallback text.

uri string at-uri Required

AT-URI of the blue.moji.collection.item record. The owning DID is derived from this.

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "name",
    "formats"
  ],
  "properties": {
    "alt": {
      "type": "string"
    },
    "cid": {
      "type": "string",
      "format": "cid",
      "description": "CID of the blue.moji.collection.item record, populated by AppViews at hydration time (like adultOnly) so consumers can build a com.atproto.repo.strongRef for moderation reports without a separate lookup. Not meaningful on write."
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the blue.moji.collection.item record. The owning DID is derived from this."
    },
    "name": {
      "type": "string",
      "description": "Colon-wrapped alias, e.g. :blobcat:. Used as fallback text."
    },
    "formats": {
      "refs": [
        "blue.moji.richtext.facet#formats_v0",
        "blue.moji.richtext.facet#formats_v1"
      ],
      "type": "union",
      "closed": false
    },
    "adultOnly": {
      "type": "boolean",
      "default": false,
      "description": "MUST be populated by AppViews from the source item's adultOnly at hydration time (the source item is the trust anchor; do not trust a reactor-supplied value on write). Consumers SHOULD warn or blur before rendering when true, consistent with how the same item's adultOnly is handled elsewhere (facets, collection views)."
    }
  },
  "description": "Denormalized reference to the Bluemoji used, mirroring blue.moji.richtext.facet: CID-only formats let consumers build blob/CDN URLs without a getRecord round-trip. AppViews should verify against the indexed item where possible."
}

Lexicon Garden

@